miniflux-legacy/templates/status_links.php

16 lines
431 B
PHP
Raw Normal View History

2013-10-15 04:38:07 +02:00
<?php if ($item['status'] == 'unread'): ?>
2016-02-28 20:35:25 +01:00
<span
class="read-icon"
2013-10-15 04:38:07 +02:00
data-action="mark-read"
2016-03-03 15:51:47 +01:00
data-reverse-title="<?= t('mark as unread') ?>"
2016-02-28 20:35:25 +01:00
title="<?= t('mark as read') ?>"
></span>
2013-10-15 04:38:07 +02:00
<?php else: ?>
2016-02-28 20:35:25 +01:00
<span
class="read-icon"
2013-10-15 04:38:07 +02:00
data-action="mark-unread"
2016-03-03 15:51:47 +01:00
data-reverse-title="<?= t('mark as read') ?>"
2016-02-28 20:35:25 +01:00
title="<?= t('mark as unread') ?>"
></span>
2016-03-03 15:51:47 +01:00
<?php endif ?>