2013-02-18 03:48:21 +01:00
|
|
|
<?php if (empty($items)): ?>
|
|
|
|
|
2013-04-13 03:08:55 +02:00
|
|
|
<p class="alert alert-info"><?= t('No history') ?></p>
|
2013-02-18 03:48:21 +01:00
|
|
|
|
|
|
|
<?php else: ?>
|
|
|
|
|
|
|
|
<div class="page-header">
|
2013-04-13 03:08:55 +02:00
|
|
|
<h2><?= t('History') ?></h2>
|
2013-02-18 03:48:21 +01:00
|
|
|
<ul>
|
2013-04-13 03:08:55 +02:00
|
|
|
<li><a href="?action=confirm-flush-history"><?= t('flush these items') ?></a></li>
|
2013-02-18 03:48:21 +01:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
2013-04-03 04:49:14 +02:00
|
|
|
<section class="items" id="listing">
|
2013-02-18 03:48:21 +01:00
|
|
|
<?php foreach ($items as $item): ?>
|
2013-06-01 04:01:01 +02:00
|
|
|
<?php $item_id = Model\encode_item_id($item['id']) ?>
|
|
|
|
<article id="item-<?= $item_id ?>" data-item-id="<?= $item_id ?>">
|
2013-04-03 04:49:14 +02:00
|
|
|
<h2>
|
|
|
|
<a
|
2013-06-01 04:01:01 +02:00
|
|
|
href="?action=show&id=<?= $item_id ?>"
|
|
|
|
id="open-<?= $item_id ?>"
|
2013-04-03 04:49:14 +02:00
|
|
|
>
|
|
|
|
<?= Helper\escape($item['title']) ?>
|
|
|
|
</a>
|
|
|
|
</h2>
|
2013-02-18 03:48:21 +01:00
|
|
|
<p>
|
2013-02-24 20:04:56 +01:00
|
|
|
<?= Helper\get_host_from_url($item['url']) ?> |
|
2013-04-13 03:08:55 +02:00
|
|
|
<?= dt('%A %e %B %Y %k:%M', $item['updated']) ?> |
|
2013-06-04 13:38:54 +02:00
|
|
|
<a href="?action=mark-item-starred&id=<?= $item_id ?>"><?= t('mark as starred') ?></a> |
|
2013-06-01 04:01:01 +02:00
|
|
|
<a href="?action=mark-item-unread&id=<?= $item_id ?>"><?= t('mark as unread') ?></a> |
|
|
|
|
<a href="?action=mark-item-removed&id=<?= $item_id ?>"><?= t('remove') ?></a> |
|
2013-04-03 04:49:14 +02:00
|
|
|
<a
|
|
|
|
href="<?= $item['url'] ?>"
|
2013-06-01 04:01:01 +02:00
|
|
|
id="original-<?= $item_id ?>"
|
2013-04-03 04:49:14 +02:00
|
|
|
rel="noreferrer"
|
|
|
|
target="_blank"
|
2013-06-01 04:01:01 +02:00
|
|
|
data-item-id="<?= $item_id ?>"
|
2013-04-03 04:49:14 +02:00
|
|
|
>
|
2013-04-13 03:08:55 +02:00
|
|
|
<?= t('original link') ?>
|
2013-04-03 04:49:14 +02:00
|
|
|
</a>
|
2013-02-18 03:48:21 +01:00
|
|
|
</p>
|
|
|
|
</article>
|
|
|
|
<?php endforeach ?>
|
|
|
|
</section>
|
|
|
|
|
2013-06-04 13:38:54 +02:00
|
|
|
<?php endif ?>
|