miniflux-legacy/templates/unread_items.php

38 lines
1.6 KiB
PHP
Raw Normal View History

2013-02-18 03:48:21 +01:00
<?php if (empty($items)): ?>
2013-04-13 03:08:55 +02:00
<p class="alert alert-info"><?= t('Nothing to read') ?></p>
2013-02-18 03:48:21 +01:00
<?php else: ?>
<div class="page-header">
<h2><?= t('Unread') ?><span id="page-counter"><?= isset($nb_items) ? $nb_items : '' ?></span></h2>
2013-02-18 03:48:21 +01:00
<ul>
<li>
2015-01-18 14:33:19 +01:00
<a href="?action=unread&amp;order=updated&amp;direction=<?= $direction == 'asc' ? 'desc' : 'asc' ?>"><?= tne('sort by date %s(%s)%s', '<span class="hide-mobile">',$direction == 'desc' ? t('older first') : t('most recent first'), '</span>') ?></a>
2013-09-15 01:05:52 +02:00
</li>
<li>
<a href="?action=mark-all-read" data-action="mark-all-read"><?= t('mark all as read') ?></a>
</li>
2013-02-18 03:48:21 +01:00
</ul>
</div>
2013-04-03 04:49:14 +02:00
<section class="items" id="listing">
2013-10-15 04:38:07 +02:00
<?php foreach ($items as $item): ?>
<?= \PicoFarad\Template\load('item', array(
'item' => $item,
'menu' => $menu,
'offset' => $offset,
'hide' => true,
'display_mode' => $display_mode,
2014-12-24 23:54:27 +01:00
'favicons' => $favicons,
'original_marks_read' => $original_marks_read,
)) ?>
2013-10-15 04:38:07 +02:00
<?php endforeach ?>
2013-07-06 04:37:19 +02:00
2013-10-15 04:38:07 +02:00
<div id="bottom-menu">
<a href="?action=mark-all-read" data-action="mark-all-read"><?= t('mark all as read') ?></a>
2013-10-15 04:38:07 +02:00
</div>
2013-07-06 04:37:19 +02:00
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)) ?>
2013-02-18 03:48:21 +01:00
</section>
<?php endif ?>