2013-07-13 04:16:40 +02:00
< ? php if ( empty ( $items )) : ?>
2013-09-15 01:05:52 +02:00
< p class = " alert " >
2014-02-26 00:00:36 +01:00
< ? = tne ( 'This subscription is empty, <a href="?action=unread">go back to unread items</a>' ) ?>
2013-09-15 01:05:52 +02:00
</ p >
2013-07-13 04:16:40 +02:00
< ? php else : ?>
< div class = " page-header " >
2014-07-26 14:01:25 +02:00
< h2 >< ? = Helper\escape ( $feed [ 'title' ]) ?> (<span id="page-counter"><?= $nb_items ?></span>)</h2>
2013-09-15 01:05:52 +02:00
< ul >
< li >
2014-02-26 00:00:36 +01:00
< a href = " ?action=feed-items&feed_id=<?= $feed['id'] ?>&order=updated&direction=<?= $direction == 'asc' ? 'desc' : 'asc' ?> " >< ? = tne ( 'sort by date<span class="hide-mobile"> (%s)</span>' , $direction == 'desc' ? t ( 'older first' ) : t ( 'most recent first' )) ?> </a>
2013-09-15 01:05:52 +02:00
</ li >
< li >
< a href = " ?action=mark-feed-as-read&feed_id=<?= $feed['id'] ?> " data - action = " mark-feed-read " data - feed - id = " <?= $feed['id'] ?> " >< ? = t ( 'mark all as read' ) ?> </a>
</ li >
</ ul >
2013-07-13 04:16:40 +02:00
</ div >
< section class = " items " id = " listing " >
2013-10-15 04:38:07 +02:00
< ? php foreach ( $items as $item ) : ?>
2014-10-20 01:14:33 +02:00
< ? = \PicoFarad\Template\load ( 'item' , array (
'feed' => $feed ,
'item' => $item ,
'menu' => $menu ,
'offset' => $offset ,
'hide' => false ,
'display_mode' => $display_mode ,
)) ?>
2013-10-15 04:38:07 +02:00
< ? php endforeach ?>
2013-07-13 04:16:40 +02:00
2013-10-15 04:38:07 +02:00
< div id = " bottom-menu " >
< a href = " ?action=mark-feed-as-read&feed_id=<?= $feed['id'] ?> " data - action = " mark-feed-read " data - feed - id = " <?= $feed['id'] ?> " >< ? = t ( 'mark all as read' ) ?> </a>
</ div >
2013-07-13 04:16:40 +02:00
2014-03-17 02:56:43 +01:00
< ? = \PicoFarad\Template\load ( 'paging' , array ( 'menu' => $menu , 'nb_items' => $nb_items , 'items_per_page' => $items_per_page , 'offset' => $offset , 'order' => $order , 'direction' => $direction , 'feed_id' => $feed [ 'id' ])) ?>
2013-07-13 04:16:40 +02:00
</ section >
< ? php endif ?>