2013-02-18 03:48:21 +01:00
|
|
|
<?php if (empty($items)): ?>
|
|
|
|
|
2013-03-17 23:16:25 +01:00
|
|
|
<p class="alert alert-info">Nothing to read.</p>
|
2013-02-18 03:48:21 +01:00
|
|
|
|
|
|
|
<?php else: ?>
|
|
|
|
|
|
|
|
<div class="page-header">
|
|
|
|
<h2>Unread items</h2>
|
|
|
|
<ul>
|
|
|
|
<li><a href="?action=flush-unread">flush</a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<section class="items">
|
|
|
|
<?php foreach ($items as $item): ?>
|
2013-03-21 03:32:10 +01:00
|
|
|
<article id="item-<?= urlencode($item['id']) ?>">
|
2013-02-18 03:48:21 +01:00
|
|
|
<h2><a href="?action=read&id=<?= urlencode($item['id']) ?>"><?= Helper\escape($item['title']) ?></a></h2>
|
2013-03-27 12:58:30 +01:00
|
|
|
<a href="?action" class="mark-read">mark read</a>
|
2013-03-17 23:16:25 +01:00
|
|
|
<p class="preview">
|
|
|
|
<?= Helper\escape(Helper\summary(strip_tags($item['content']), 50, 300)) ?>
|
|
|
|
</p>
|
2013-02-18 03:48:21 +01:00
|
|
|
<p>
|
2013-02-24 20:04:56 +01:00
|
|
|
<?= Helper\get_host_from_url($item['url']) ?> |
|
2013-03-27 12:58:30 +01:00
|
|
|
<a href="<?= $item['url'] ?>" rel="noreferrer" target="_blank" data-item-id="<?= urlencode($item['id']) ?>" data-action="mark-read">direct link</a> |
|
|
|
|
<a href="#read" rel="noreferrer" data-item-id="<?= urlencode($item['id']) ?>" data-action="mark-read">mark read</a>
|
2013-02-18 03:48:21 +01:00
|
|
|
</p>
|
|
|
|
</article>
|
|
|
|
<?php endforeach ?>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<?php endif ?>
|