Move the icon before the link

This commit is contained in:
Frédéric Guillot 2013-10-07 22:25:26 -04:00
parent b905de3a91
commit 4e7354e96b
1 changed files with 1 additions and 3 deletions

View File

@ -23,15 +23,13 @@
<article id="item-<?= $item['id'] ?>" data-item-id="<?= $item['id'] ?>" data-item-page="<?= $menu ?>" data-hide="true">
<h2>
<?= $item['bookmark'] ? '★ ' : '' ?>
<?= $item['status'] === 'read' ? '☑ ' : '' ?>
<a
href="?action=show&amp;menu=feed-items&amp;id=<?= $item['id'] ?>"
data-item-id="<?= $item['id'] ?>"
id="open-<?= $item['id'] ?>"
<?= $item['status'] === 'read' ? 'class="read"' : '' ?>
>
<?php if ($item['status'] === 'read'): ?>
<?php endif ?>
<?= Helper\escape($item['title']) ?>
</a>
</h2>