71 lines
2.9 KiB
PHP
71 lines
2.9 KiB
PHP
<?php if (empty($items)): ?>
|
|
|
|
<p class="alert">
|
|
<?= t('This subscription is empty, <a href="?action=unread">go back to unread items</a>') ?>
|
|
</p>
|
|
|
|
<?php else: ?>
|
|
|
|
<div class="page-header">
|
|
<h2><?= Helper\escape($feed['title']) ?> (<?= $nb_items ?>)</h2>
|
|
<ul>
|
|
<li>
|
|
<a href="?action=feed-items&feed_id=<?= $feed['id'] ?>&order=updated&direction=<?= $direction == 'asc' ? 'desc' : 'asc' ?>"><?= t('sort by date<span class="hide-mobile"> (%s)</span>', $direction == 'desc' ? t('older') : t('most recent')) ?></a>
|
|
</li>
|
|
<li>
|
|
<a href="?action=mark-feed-as-read&feed_id=<?= $feed['id'] ?>" data-action="mark-feed-read" data-feed-id="<?= $feed['id'] ?>"><?= t('mark all as read') ?></a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<section class="items" id="listing">
|
|
<?php foreach ($items as $item): ?>
|
|
<article id="item-<?= $item['id'] ?>" data-item-id="<?= $item['id'] ?>" data-item-page="<?= $menu ?>" data-hide="true">
|
|
<h2>
|
|
<?= $item['bookmark'] ? '★ ' : '' ?>
|
|
<a
|
|
href="?action=show&menu=feed-items&id=<?= $item['id'] ?>"
|
|
data-item-id="<?= $item['id'] ?>"
|
|
id="open-<?= $item['id'] ?>"
|
|
>
|
|
<?= Helper\escape($item['title']) ?>
|
|
</a>
|
|
</h2>
|
|
<p class="preview">
|
|
<?= Helper\escape(Helper\summary(strip_tags($item['content']), 50, 300)) ?>
|
|
</p>
|
|
<p>
|
|
<?= Helper\get_host_from_url($item['url']) ?> |
|
|
<?= dt('%e %B %Y %k:%M', $item['updated']) ?> |
|
|
|
|
<a
|
|
href="<?= $item['url'] ?>"
|
|
id="original-<?= $item['id'] ?>"
|
|
rel="noreferrer"
|
|
target="_blank"
|
|
data-item-id="<?= $item['id'] ?>"
|
|
>
|
|
<?= t('original link') ?>
|
|
</a>
|
|
</p>
|
|
</article>
|
|
<?php endforeach ?>
|
|
|
|
<div id="bottom-menu">
|
|
<a href="?action=mark-feed-as-read&feed_id=<?= $feed['id'] ?>" data-action="mark-feed-read" data-feed-id="<?= $feed['id'] ?>"><?= t('mark all as read') ?></a>
|
|
</div>
|
|
|
|
<div id="items-paging">
|
|
<?php if ($offset > 0): ?>
|
|
<a id="previous-page" href="?action=feed-items&feed_id=<?= $feed['id'] ?>&offset=<?= ($offset - $items_per_page) ?>&order=<?= $order ?>&direction=<?= $direction ?>">« <?= t('Previous page') ?></a>
|
|
-
|
|
<?php endif ?>
|
|
|
|
<?php if (($nb_items - $offset) > $items_per_page): ?>
|
|
<a id="next-page" href="?action=feed-items&feed_id=<?= $feed['id'] ?>&offset=<?= ($offset + $items_per_page) ?>&order=<?= $order ?>&direction=<?= $direction ?>"><?= t('Next page') ?> »</a>
|
|
<?php endif ?>
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<?php endif ?>
|