miniflux-legacy/templates/bookmarks.php

52 lines
1.8 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">
2013-07-06 04:37:19 +02:00
<h2><?= t('Bookmarks') ?> (<?= $nb_items ?>)</h2>
</div>
2013-06-15 05:12:08 +02:00
<section class="items">
<?php foreach ($items as $item): ?>
<?php $item_id = Model\encode_item_id($item['id']) ?>
<article id="item-<?= $item_id ?>" data-item-id="<?= $item_id ?>">
<h2>
<a
2013-06-15 05:12:08 +02:00
href="?action=show&amp;id=<?= $item_id ?>"
id="open-<?= $item_id ?>"
>
<?= Helper\escape($item['title']) ?>
</a>
</h2>
<p>
<?= Helper\get_host_from_url($item['url']) ?> |
2013-06-15 05:12:08 +02:00
<?= dt('%e %B %Y %k:%M', $item['updated']) ?> |
<a href="?action=bookmark&amp;value=0&amp;id=<?= $item_id ?>&amp;redirect=bookmarks&amp;offset=<?= $offset ?>"><?= t('remove bookmark') ?></a> |
<a
href="<?= $item['url'] ?>"
id="original-<?= $item_id ?>"
rel="noreferrer"
target="_blank"
data-item-id="<?= $item_id ?>"
>
<?= t('original link') ?>
</a>
</p>
</article>
<?php endforeach ?>
2013-07-06 04:37:19 +02:00
<nav id="items-paging">
<?php if ($offset > 0): ?>
<a id="previous-page" href="?action=bookmarks&amp;offset=<?= ($offset - $items_per_page) ?>"> <?= t('Previous page') ?></a>
2013-07-06 04:37:19 +02:00
<?php endif ?>
&nbsp;
<?php if (($nb_items - $offset) > $items_per_page): ?>
<a id="next-page" href="?action=bookmarks&amp;offset=<?= ($offset + $items_per_page) ?>"><?= t('Next page') ?> ⇾</a>
2013-07-06 04:37:19 +02:00
<?php endif ?>
</nav>
</section>
2013-06-27 01:30:46 +02:00
<?php endif ?>