miniflux-legacy/templates/bookmarks.php

61 lines
2.2 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>
<section class="items" id="listing">
<?php foreach ($items as $item): ?>
<article id="item-<?= $item['id'] ?>" data-item-id="<?= $item['id'] ?>">
<h2>
<a
2013-08-04 20:15:32 +02:00
href="?action=show&amp;menu=bookmarks&amp;id=<?= $item['id'] ?>"
data-item-id="<?= $item['id'] ?>"
id="open-<?= $item['id'] ?>"
>
<?= Helper\escape($item['title']) ?>
</a>
</h2>
2013-08-23 03:38:09 +02:00
<p class="preview">
<?= Helper\escape(Helper\summary(strip_tags($item['content']), 50, 300)) ?>
</p>
<p>
2013-09-15 01:05:52 +02:00
<a href="?action=feed-items&amp;feed_id=<?= $item['feed_id'] ?>" title="<?= t('Show only this subscription') ?>"><?= Helper\escape($item['feed_title']) ?></a> |
2013-06-15 05:12:08 +02:00
<?= dt('%e %B %Y %k:%M', $item['updated']) ?> |
<span class="hide-mobile">
2013-08-04 20:15:32 +02:00
<a href="?action=bookmark&amp;value=0&amp;id=<?= $item['id'] ?>&amp;menu=bookmarks&amp;offset=<?= $offset ?>">
<?= t('remove bookmark') ?>
</a> |
</span>
<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 ?>