miniflux-legacy/templates/bookmarks.php

28 lines
1.0 KiB
PHP
Raw Normal View History

<?php if (empty($items)): ?>
2013-06-15 14:39:16 +02:00
<p class="alert alert-info"><?= t('No bookmark') ?></p>
<?php else: ?>
<div class="page-header">
<h2><?= t('Bookmarks') ?><span id="page-counter"><?= isset($nb_items) ? $nb_items : '' ?></span></h2>
</div>
<?php if ($nothing_to_read): ?>
<p class="alert"><?= t('There is nothing new to read, enjoy your favorites articles!') ?></p>
<?php endif ?>
<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)) ?>
</section>
2013-06-27 01:30:46 +02:00
<?php endif ?>