miniflux-legacy/templates/bookmarks.php

41 lines
1.4 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-06-15 05:12:08 +02:00
<h2><?= t('Bookmarks') ?></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']) ?>
2013-06-15 05:12:08 +02:00
<article id="item-<?= $item_id ?>" data-item-id="<?= $item_id ?>" class="<?= $item['status'] == 'read' ? 'item-status-read' : '' ?>">
<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"><?= 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 ?>
</section>
2013-06-27 01:30:46 +02:00
<?php endif ?>