miniflux-legacy/templates/status_links.php

26 lines
1.0 KiB
PHP
Raw Normal View History

2014-02-15 03:21:14 +01:00
<li class="hide-mobile">
<a href="?action=mark-item-removed&amp;id=<?= $item['id'] ?>&amp;offset=<?= $offset ?>&amp;redirect=<?= $redirect ?>&amp;feed_id=<?= $item['feed_id'] ?>"><?= t('remove') ?></a>
</li>
<li>
2013-10-15 04:38:07 +02:00
<?php if ($item['status'] == 'unread'): ?>
<a
id="status-<?= $item['id'] ?>"
href="?action=mark-item-read&amp;id=<?= $item['id'] ?>&amp;offset=<?= $offset ?>&amp;redirect=<?= $redirect ?>&amp;feed_id=<?= $item['feed_id'] ?>"
data-action="mark-read"
data-item-id="<?= $item['id'] ?>"
data-reverse-label="<?= t('mark as unread') ?>"
>
<?= t('mark as read') ?>
2014-02-05 03:47:59 +01:00
</a>
2013-10-15 04:38:07 +02:00
<?php else: ?>
<a
id="status-<?= $item['id'] ?>"
href="?action=mark-item-unread&amp;id=<?= $item['id'] ?>&amp;offset=<?= $offset ?>&amp;redirect=<?= $redirect ?>&amp;feed_id=<?= $item['feed_id'] ?>"
data-action="mark-unread"
data-item-id="<?= $item['id'] ?>"
data-reverse-label="<?= t('mark as read') ?>"
>
<?= t('mark as unread') ?>
2014-02-05 03:47:59 +01:00
</a>
2013-10-15 04:38:07 +02:00
<?php endif ?>
2014-02-15 03:21:14 +01:00
</li>