miniflux-legacy/app/templates/feed_items.php

53 lines
2.5 KiB
PHP
Raw Normal View History

<?php if (empty($items)): ?>
<p class="alert alert-info">
2015-01-18 14:33:19 +01:00
<?= tne('This subscription is empty, %sgo back to unread items%s','<a href="?action=unread">','</a>') ?>
2013-09-15 01:05:52 +02:00
</p>
<?php else: ?>
<div class="page-header">
<h2><?= Helper\escape($feed['title']) ?>&lrm;<span id="page-counter"><?= isset($nb_items) ? $nb_items : '' ?></span></h2>
2013-09-15 01:05:52 +02:00
<ul>
<li>
<a href="?action=refresh-feed&amp;feed_id=<?= $feed['id'] ?>&amp;redirect=feed-items"><?= t('refresh') ?></a>
</li>
2016-04-17 23:41:54 +02:00
<li>
<a href="?action=edit-feed&amp;feed_id=<?= $feed['id'] ?>"><?= t('edit') ?></a>
</li>
2013-09-15 01:05:52 +02:00
<li>
2015-01-18 14:33:19 +01:00
<a href="?action=feed-items&amp;feed_id=<?= $feed['id'] ?>&amp;order=updated&amp;direction=<?= $direction == 'asc' ? 'desc' : 'asc' ?>"><?= tne('sort by date %s(%s)%s', '<span class="hide-mobile">', $direction == 'desc' ? t('older first') : t('most recent first'), '</span>') ?></a>
2013-09-15 01:05:52 +02:00
</li>
<li>
2015-04-29 11:16:36 +02:00
<a href="?action=mark-feed-as-read&amp;feed_id=<?= $feed['id'] ?>" data-action="mark-feed-read"><?= t('mark all as read') ?></a>
2013-09-15 01:05:52 +02:00
</li>
</ul>
</div>
<?php if ($feed['parsing_error']): ?>
<p class="alert alert-error">
<?= tne('An error occurred during the last check. Refresh the feed manually and check the %sconsole%s for errors afterwards!','<a href="?action=console">','</a>') ?>
</p>
<?php endif; ?>
2015-04-29 11:16:36 +02:00
<section class="items" id="listing" data-feed-id="<?= $feed['id'] ?>">
2013-10-15 04:38:07 +02:00
<?php foreach ($items as $item): ?>
2015-08-29 03:34:34 +02:00
<?= \Template\load('item', array(
'feed' => $feed,
'item' => $item,
'menu' => $menu,
'offset' => $offset,
'hide' => false,
'display_mode' => $display_mode,
2014-12-24 23:54:27 +01:00
'favicons' => $favicons,
'original_marks_read' => $original_marks_read,
2016-02-28 20:47:05 +01:00
'item_title_link' => $item_title_link,
)) ?>
2013-10-15 04:38:07 +02:00
<?php endforeach ?>
2013-10-15 04:38:07 +02:00
<div id="bottom-menu">
2015-04-29 11:16:36 +02:00
<a href="?action=mark-feed-as-read&amp;feed_id=<?= $feed['id'] ?>" data-action="mark-feed-read"><?= t('mark all as read') ?></a>
2013-10-15 04:38:07 +02:00
</div>
2015-08-29 03:34:34 +02:00
<?= \Template\load('paging', array('menu' => $menu, 'nb_items' => $nb_items, 'items_per_page' => $items_per_page, 'offset' => $offset, 'order' => $order, 'direction' => $direction, 'feed_id' => $feed['id'])) ?>
</section>
<?php endif ?>