miniflux-legacy/templates/unread_items.php

46 lines
1.6 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-04-13 03:08:55 +02:00
<h2><?= t('Unread items') ?></h2>
2013-02-18 03:48:21 +01:00
<ul>
2013-04-13 03:08:55 +02:00
<li><a href="?action=mark-as-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): ?>
2013-04-03 04:49:14 +02:00
<article id="item-<?= urlencode($item['id']) ?>" data-item-id="<?= urlencode($item['id']) ?>">
<h2>
<a
href="?action=read&amp;id=<?= urlencode($item['id']) ?>"
id="open-<?= urlencode($item['id']) ?>"
>
<?= 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-02-24 20:04:56 +01:00
<?= Helper\get_host_from_url($item['url']) ?> |
2013-04-13 03:08:55 +02:00
<a href="?action=mark-item-read&amp;id=<?= urlencode($item['id']) ?>"><?= t('mark as read') ?></a> |
2013-04-03 04:49:14 +02:00
<a
href="<?= $item['url'] ?>"
id="original-<?= urlencode($item['id']) ?>"
rel="noreferrer"
target="_blank"
data-item-id="<?= urlencode($item['id']) ?>"
data-action="mark-read"
>
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>
<?php endif ?>