miniflux-legacy/templates/bookmarks.php

17 lines
683 B
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">
2013-07-06 04:37:19 +02:00
<h2><?= t('Bookmarks') ?> (<?= $nb_items ?>)</h2>
</div>
<section class="items" id="listing">
2013-10-15 04:38:07 +02:00
<?php foreach ($items as $item): ?>
<?= \PicoTools\Template\load('item', array('item' => $item, 'menu' => $menu, 'offset' => $offset, 'hide' => false)) ?>
<?php endforeach ?>
2013-07-06 04:37:19 +02:00
2013-10-15 04:38:07 +02:00
<?= \PicoTools\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 ?>