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">
|
2014-07-26 14:01:25 +02:00
|
|
|
<h2><span id="page-counter"><?= isset($nb_items) ? $nb_items : '' ?></span> <?= t('unread items') ?></h2>
|
2013-02-18 03:48:21 +01:00
|
|
|
<ul>
|
2013-07-16 15:00:14 +02:00
|
|
|
<li>
|
2014-02-26 00:00:36 +01:00
|
|
|
<a href="?action=unread&order=updated&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-as-read" data-action="mark-all-read"><?= t('mark all as read') ?></a>
|
2013-07-16 15:00:14 +02:00
|
|
|
</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): ?>
|
2014-10-20 01:14:33 +02:00
|
|
|
<?= \PicoFarad\Template\load('item', array(
|
|
|
|
'item' => $item,
|
|
|
|
'menu' => $menu,
|
|
|
|
'offset' => $offset,
|
|
|
|
'hide' => true,
|
|
|
|
'display_mode' => $display_mode,
|
|
|
|
)) ?>
|
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-as-read" data-action="mark-all-read"><?= t('mark all as read') ?></a>
|
|
|
|
</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>
|
|
|
|
|
2013-06-04 13:38:54 +02:00
|
|
|
<?php endif ?>
|