summaryrefslogtreecommitdiffstats
path: root/templates/part.items.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/part.items.php')
-rw-r--r--templates/part.items.php10
1 files changed, 6 insertions, 4 deletions
diff --git a/templates/part.items.php b/templates/part.items.php
index efe37821a..85eb17c08 100644
--- a/templates/part.items.php
+++ b/templates/part.items.php
@@ -37,10 +37,6 @@ foreach($items as $item) {
echo '<ul class="primary_item_utils">';
echo '<li class="star ' . $starClass . '" title="' . $startTitle . '"></li>';
echo '</ul>';
-
- echo '<ul class="secondary_item_utils">';
- echo '<li class="keep_unread">' . $l->t('Keep unread') . '<input type="checkbox" /></li>';
- echo '</ul>';
echo '</div>';
echo '<h1 class="item_title"><a target="_blank" href="' . $item->getUrl() . '">' . $item->getTitle() . '</a></h1>';
@@ -54,6 +50,12 @@ foreach($items as $item) {
echo '<div class="body">' . $item->getBody() . '</div>';
+ echo '<div class="bottom_utils">';
+ echo '<ul class="secondary_item_utils">';
+ echo '<li class="keep_unread">' . $l->t('Keep unread') . '<input type="checkbox" /></li>';
+ echo '</ul>';
+ echo '</div>';
+
echo '</li>';
}