miniflux-legacy/templates/status_links.php

24 lines
982 B
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'] ?>"
data-action="mark-removed"
class="delete"
><?= t('remove') ?></a>
2014-02-15 03:21:14 +01:00
</li>
<li>
2013-10-15 04:38:07 +02:00
<?php if ($item['status'] == 'unread'): ?>
<a
class="mark"
2013-10-15 04:38:07 +02:00
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-reverse-label="<?= t('mark as unread') ?>"
><?= t('mark as read') ?></a>
2013-10-15 04:38:07 +02:00
<?php else: ?>
<a
class="mark"
2013-10-15 04:38:07 +02:00
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-reverse-label="<?= t('mark as read') ?>"
><?= t('mark as unread') ?></a>
2013-10-15 04:38:07 +02:00
<?php endif ?>
2014-02-15 03:21:14 +01:00
</li>