miniflux-legacy/templates/feed_items.php

38 lines
1.7 KiB
PHP
Raw Normal View History

<?php if (empty($items)): ?>
2013-09-15 01:05:52 +02:00
<p class="alert">
2014-02-26 00:00:36 +01:00
<?= tne('This subscription is empty, <a href="?action=unread">go back to unread items</a>') ?>
2013-09-15 01:05:52 +02:00
</p>
<?php else: ?>
<div class="page-header">
<h2><?= Helper\escape($feed['title']) ?> (<span id="page-counter"><?= $nb_items ?></span>)</h2>
2013-09-15 01:05:52 +02:00
<ul>
<li>
2014-02-26 00:00:36 +01:00
<a href="?action=feed-items&amp;feed_id=<?= $feed['id'] ?>&amp;order=updated&amp;direction=<?= $direction == 'asc' ? 'desc' : 'asc' ?>"><?= tne('sort by date<span class="hide-mobile"> (%s)</span>', $direction == 'desc' ? t('older first') : t('most recent first')) ?></a>
2013-09-15 01:05:52 +02:00
</li>
<li>
<a href="?action=mark-feed-as-read&amp;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">
2013-10-15 04:38:07 +02:00
<?php foreach ($items as $item): ?>
<?= \PicoFarad\Template\load('item', array(
'feed' => $feed,
'item' => $item,
'menu' => $menu,
'offset' => $offset,
'hide' => false,
'display_mode' => $display_mode,
)) ?>
2013-10-15 04:38:07 +02:00
<?php endforeach ?>
2013-10-15 04:38:07 +02:00
<div id="bottom-menu">
<a href="?action=mark-feed-as-read&amp;feed_id=<?= $feed['id'] ?>" data-action="mark-feed-read" data-feed-id="<?= $feed['id'] ?>"><?= t('mark all as read') ?></a>
</div>
2014-03-17 02:56:43 +01:00
<?= \PicoFarad\Template\load('paging', array('menu' => $menu, 'nb_items' => $nb_items, 'items_per_page' => $items_per_page, 'offset' => $offset, 'order' => $order, 'direction' => $direction, 'feed_id' => $feed['id'])) ?>
</section>
<?php endif ?>