miniflux-legacy/templates/unread_items.php

87 lines
3.8 KiB
PHP
Raw Normal View History

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('Nothing to read') ?></p>
2013-02-18 03:48:21 +01:00
<?php else: ?>
<div class="page-header">
2013-08-08 02:18:48 +02:00
<h2><?= t('<span id="page-counter">%s</span>unread items', isset($nb_items) ? $nb_items.' ' : '') ?></h2>
2013-02-18 03:48:21 +01:00
<ul>
<li>
<a href="?action=unread&amp;order=updated&amp;direction=<?= $direction == 'asc' ? 'desc' : 'asc' ?>"><?= t('sort by date<span class="hide-mobile"> (%s)</span>', $direction == 'desc' ? t('older first') : t('most recent first')) ?></a>
2013-09-15 01:05:52 +02:00
</li>
<li>
<a href="?action=mark-as-read" data-action="mark-all-read"><?= t('mark all as read') ?></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): ?>
<article id="item-<?= $item['id'] ?>" data-item-id="<?= $item['id'] ?>" data-item-page="<?= $menu ?>" data-hide="true">
2013-04-03 04:49:14 +02:00
<h2>
2013-06-15 05:12:08 +02:00
<?= $item['bookmark'] ? '★ ' : '' ?>
2013-04-03 04:49:14 +02:00
<a
2013-08-04 20:15:32 +02:00
href="?action=show&amp;menu=unread&amp;id=<?= $item['id'] ?>"
data-item-id="<?= $item['id'] ?>"
id="open-<?= $item['id'] ?>"
2013-04-03 04:49:14 +02:00
>
<?= Helper\escape($item['title']) ?>
</a>
</h2>
2013-03-17 23:16:25 +01:00
<p class="preview">
<?= Helper\escape(Helper\summary(strip_tags($item['content']), 50, 300)) ?>
</p>
2013-02-18 03:48:21 +01:00
<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-07-20 02:39:49 +02:00
<span class="hide-mobile"><?= dt('%e %B %Y %k:%M', $item['updated']) ?> |</span>
2013-07-20 02:39:49 +02:00
<span class="hide-mobile">
2013-06-15 05:12:08 +02:00
<?php if ($item['bookmark']): ?>
2013-08-04 20:15:32 +02:00
<a id="bookmark-<?= $item['id'] ?>" href="?action=bookmark&amp;value=0&amp;id=<?= $item['id'] ?>&amp;menu=unread&amp;offset=<?= $offset ?>"><?= t('remove bookmark') ?></a> |
<?php else: ?>
2013-08-04 20:15:32 +02:00
<a id="bookmark-<?= $item['id'] ?>" href="?action=bookmark&amp;value=1&amp;id=<?= $item['id'] ?>&amp;menu=unread&amp;offset=<?= $offset ?>"><?= t('bookmark') ?></a> |
<?php endif ?>
2013-07-20 02:39:49 +02:00
</span>
<a
href="?action=mark-item-read&amp;id=<?= $item['id'] ?>&amp;offset=<?= $offset ?>"
data-action="mark-read"
data-item-id="<?= $item['id'] ?>"
2013-10-11 04:18:12 +02:00
data-hide="true"
>
<?= t('mark as read') ?>
</a> |
2013-04-03 04:49:14 +02:00
<a
href="<?= $item['url'] ?>"
id="original-<?= $item['id'] ?>"
2013-04-03 04:49:14 +02:00
rel="noreferrer"
target="_blank"
data-item-id="<?= $item['id'] ?>"
data-action="original-link"
data-hide="true"
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 ?>
2013-07-06 04:37:19 +02:00
<div id="bottom-menu">
<a href="?action=mark-as-read" data-action="mark-all-read"><?= t('mark all as read') ?></a>
</div>
<div id="items-paging">
2013-07-06 04:37:19 +02:00
<?php if ($offset > 0): ?>
<a id="previous-page" href="?action=unread&amp;offset=<?= ($offset - $items_per_page) ?>&amp;order=<?= $order ?>&amp;direction=<?= $direction ?>">« <?= 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=unread&amp;offset=<?= ($offset + $items_per_page) ?>&amp;order=<?= $order ?>&amp;direction=<?= $direction ?>"><?= t('Next page') ?> »</a>
2013-07-06 04:37:19 +02:00
<?php endif ?>
</div>
2013-07-06 04:37:19 +02:00
2013-02-18 03:48:21 +01:00
</section>
<?php endif ?>