2013-06-04 13:38:54 +02:00
|
|
|
<?php if (empty($items)): ?>
|
2013-06-15 14:39:16 +02:00
|
|
|
<p class="alert alert-info"><?= t('No bookmark') ?></p>
|
2013-06-04 13:38:54 +02:00
|
|
|
<?php else: ?>
|
|
|
|
|
|
|
|
<div class="page-header">
|
2014-09-16 15:14:49 +02:00
|
|
|
<h2><?= t('Bookmarks') ?><span id="page-counter"><?= isset($nb_items) ? $nb_items : '' ?></span></h2>
|
2013-06-04 13:38:54 +02:00
|
|
|
</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 favorites articles!') ?></p>
|
|
|
|
<?php endif ?>
|
|
|
|
|
2013-07-12 05:41:45 +02:00
|
|
|
<section class="items" id="listing">
|
2013-10-15 04:38:07 +02:00
|
|
|
<?php foreach ($items as $item): ?>
|
2014-12-24 23:54:27 +01:00
|
|
|
<?= \PicoFarad\Template\load('item', array(
|
|
|
|
'item' => $item,
|
|
|
|
'menu' => $menu,
|
|
|
|
'offset' => $offset,
|
|
|
|
'hide' => false,
|
|
|
|
'display_mode' => $display_mode,
|
|
|
|
'favicons' => $favicons,
|
|
|
|
)) ?>
|
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-06-04 13:38:54 +02:00
|
|
|
</section>
|
|
|
|
|
2013-06-27 01:30:46 +02:00
|
|
|
<?php endif ?>
|