2013-02-17 21:48:21 -05:00
|
|
|
<?php if (empty($items)): ?>
|
|
|
|
|
2013-04-12 21:08:55 -04:00
|
|
|
<p class="alert alert-info"><?= t('Nothing to read') ?></p>
|
2013-02-17 21:48:21 -05:00
|
|
|
|
|
|
|
<?php else: ?>
|
|
|
|
|
|
|
|
<div class="page-header">
|
2013-06-14 20:37:45 -04:00
|
|
|
<h2><span id="page-counter"><?= isset($nb_items) ? $nb_items.' ' : '' ?></span><?= t('unread items') ?></h2>
|
2013-02-17 21:48:21 -05:00
|
|
|
<ul>
|
2013-04-12 21:08:55 -04:00
|
|
|
<li><a href="?action=mark-as-read"><?= t('mark all as read') ?></a></li>
|
2013-02-17 21:48:21 -05:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
2013-04-02 22:49:14 -04:00
|
|
|
<section class="items" id="listing">
|
2013-02-17 21:48:21 -05:00
|
|
|
<?php foreach ($items as $item): ?>
|
2013-05-31 22:01:01 -04:00
|
|
|
<?php $item_id = Model\encode_item_id($item['id']) ?>
|
2013-06-14 23:12:08 -04:00
|
|
|
<article id="item-<?= $item_id ?>" data-item-id="<?= $item_id ?>" data-item-page="<?= $menu ?>">
|
2013-04-02 22:49:14 -04:00
|
|
|
<h2>
|
2013-06-14 23:12:08 -04:00
|
|
|
<?= $item['bookmark'] ? '★ ' : '' ?>
|
2013-04-02 22:49:14 -04:00
|
|
|
<a
|
2013-05-31 22:01:01 -04:00
|
|
|
href="?action=read&id=<?= $item_id ?>"
|
|
|
|
id="open-<?= $item_id ?>"
|
2013-04-02 22:49:14 -04:00
|
|
|
>
|
|
|
|
<?= Helper\escape($item['title']) ?>
|
|
|
|
</a>
|
|
|
|
</h2>
|
2013-03-17 18:16:25 -04:00
|
|
|
<p class="preview">
|
|
|
|
<?= Helper\escape(Helper\summary(strip_tags($item['content']), 50, 300)) ?>
|
|
|
|
</p>
|
2013-02-17 21:48:21 -05:00
|
|
|
<p>
|
2013-02-24 14:04:56 -05:00
|
|
|
<?= Helper\get_host_from_url($item['url']) ?> |
|
2013-06-14 23:12:08 -04:00
|
|
|
<?= dt('%e %B %Y %k:%M', $item['updated']) ?> |
|
2013-06-10 14:50:06 +02:00
|
|
|
|
2013-06-14 23:12:08 -04:00
|
|
|
<?php if ($item['bookmark']): ?>
|
|
|
|
<a href="?action=bookmark&value=0&id=<?= $item_id ?>&redirect=unread"><?= t('remove bookmark') ?></a> |
|
2013-06-10 14:50:06 +02:00
|
|
|
<?php else: ?>
|
2013-06-14 23:12:08 -04:00
|
|
|
<a href="?action=bookmark&value=1&id=<?= $item_id ?>&redirect=unread"><?= t('bookmark') ?></a> |
|
2013-06-10 14:50:06 +02:00
|
|
|
<?php endif ?>
|
|
|
|
|
2013-05-31 22:01:01 -04:00
|
|
|
<a href="?action=mark-item-read&id=<?= $item_id ?>"><?= t('mark as read') ?></a> |
|
2013-04-02 22:49:14 -04:00
|
|
|
<a
|
|
|
|
href="<?= $item['url'] ?>"
|
2013-05-31 22:01:01 -04:00
|
|
|
id="original-<?= $item_id ?>"
|
2013-04-02 22:49:14 -04:00
|
|
|
rel="noreferrer"
|
|
|
|
target="_blank"
|
2013-05-31 22:01:01 -04:00
|
|
|
data-item-id="<?= $item_id ?>"
|
2013-04-02 22:49:14 -04:00
|
|
|
data-action="mark-read"
|
|
|
|
>
|
2013-04-12 21:08:55 -04:00
|
|
|
<?= t('original link') ?>
|
2013-04-02 22:49:14 -04:00
|
|
|
</a>
|
2013-02-17 21:48:21 -05:00
|
|
|
</p>
|
|
|
|
</article>
|
|
|
|
<?php endforeach ?>
|
|
|
|
</section>
|
|
|
|
|
2013-06-04 13:38:54 +02:00
|
|
|
<?php endif ?>
|