miniflux-legacy/templates/bookmarks.php

43 lines
1.6 KiB
PHP
Raw Normal View History

2016-05-03 10:45:07 +02:00
<?php if (empty($items) && $group_id === null): ?>
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>
<?php if (!empty($groups)): ?>
<nav>
<ul id="grouplist">
<?php foreach ($groups as $group): ?>
<li <?= $group['id'] == $group_id ? 'class="active"' : '' ?>>
<a href="?action=bookmarks&group_id=<?=$group['id']?>"><?=$group['title']?></a>
</li>
<?php endforeach ?>
</ul>
</nav>
<?php endif ?>
</div>
<?php if ($nothing_to_read): ?>
<p class="alert alert-info"><?= 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): ?>
2015-08-29 03:34:34 +02:00
<?= \Template\load('item', array(
2014-12-24 23:54:27 +01:00
'item' => $item,
'menu' => $menu,
'offset' => $offset,
'hide' => false,
'display_mode' => $display_mode,
2016-02-27 20:21:18 +01:00
'item_title_link' => $item_title_link,
2014-12-24 23:54:27 +01:00
'favicons' => $favicons,
'original_marks_read' => $original_marks_read,
2014-12-24 23:54:27 +01:00
)) ?>
2013-10-15 04:38:07 +02:00
<?php endforeach ?>
2013-07-06 04:37:19 +02:00
<?= \Template\load('paging', array('menu' => $menu, 'nb_items' => $nb_items, 'items_per_page' => $items_per_page, 'offset' => $offset, 'order' => $order, 'direction' => $direction, 'group_id' => $group_id)) ?>
</section>
2016-02-27 20:21:18 +01:00
<?php endif ?>