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('No history') ?></p>
|
2013-02-18 03:48:21 +01:00
|
|
|
<?php else: ?>
|
|
|
|
|
|
|
|
<div class="page-header">
|
2014-07-26 14:01:25 +02:00
|
|
|
<h2><?= t('History') ?> (<span id="page-counter"><?= $nb_items ?></span>)</h2>
|
2013-02-18 03:48:21 +01:00
|
|
|
<ul>
|
2013-07-06 04:37:19 +02:00
|
|
|
<li><a href="?action=confirm-flush-history"><?= t('flush all items') ?></a></li>
|
2013-02-18 03:48:21 +01:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
2013-12-23 19:33:16 +01:00
|
|
|
<?php if ($nothing_to_read): ?>
|
|
|
|
<p class="alert"><?= t('There is nothing new to read, enjoy your previous readings!') ?></p>
|
|
|
|
<?php endif ?>
|
|
|
|
|
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-05-29 16:57:23 +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
|
|
|
|
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 ?>
|