2013-07-13 04:16:40 +02:00
< ? php if ( empty ( $items )) : ?>
2015-01-17 23:15:47 +01:00
< p class = " alert alert-info " >
2015-01-18 14:33:19 +01:00
< ? = tne ( 'This subscription is empty, %sgo back to unread items%s' , '<a href="?action=unread">' , '</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-12-31 14:01:27 +01:00
< h2 >< ? = Helper\escape ( $feed [ 'title' ]) ?> ‎<span id="page-counter"><?= isset($nb_items) ? $nb_items : '' ?></span></h2>
2013-09-15 01:05:52 +02:00
< ul >
2014-12-11 03:26:07 +01:00
< li >
< a href = " ?action=refresh-feed&feed_id=<?= $feed['id'] ?>&redirect=feed-items " >< ? = t ( 'refresh' ) ?> </a>
</ li >
2013-09-15 01:05:52 +02:00
< li >
2015-01-18 14:33:19 +01:00
< a href = " ?action=feed-items&feed_id=<?= $feed['id'] ?>&order=updated&direction=<?= $direction == 'asc' ? 'desc' : 'asc' ?> " >< ? = tne ( 'sort by date %s(%s)%s' , '<span class="hide-mobile">' , $direction == 'desc' ? t ( 'older first' ) : t ( 'most recent first' ), '</span>' ) ?> </a>
2013-09-15 01:05:52 +02:00
</ li >
< li >
2015-04-29 11:16:36 +02:00
< a href = " ?action=mark-feed-as-read&feed_id=<?= $feed['id'] ?> " data - action = " mark-feed-read " >< ? = t ( 'mark all as read' ) ?> </a>
2013-09-15 01:05:52 +02:00
</ li >
</ ul >
2013-07-13 04:16:40 +02:00
</ div >
2015-01-14 19:44:41 +01:00
< ? php if ( $feed [ 'parsing_error' ]) : ?>
2015-01-17 23:15:47 +01:00
< p class = " alert alert-error " >
2015-01-14 19:44:41 +01:00
< ? = tne ( 'An error occurred during the last check. Refresh the feed manually and check the %sconsole%s for errors afterwards!' , '<a href="?action=console">' , '</a>' ) ?>
</ p >
< ? php endif ; ?>
2015-04-29 11:16:36 +02:00
< section class = " items " id = " listing " data - feed - id = " <?= $feed['id'] ?> " >
2013-10-15 04:38:07 +02:00
< ? php foreach ( $items as $item ) : ?>
2015-08-29 03:34:34 +02:00
< ? = \Template\load ( 'item' , array (
2014-10-20 01:14:33 +02:00
'feed' => $feed ,
'item' => $item ,
'menu' => $menu ,
'offset' => $offset ,
'hide' => false ,
'display_mode' => $display_mode ,
2014-12-24 23:54:27 +01:00
'favicons' => $favicons ,
2015-01-29 23:28:18 +01:00
'original_marks_read' => $original_marks_read ,
2014-10-20 01:14:33 +02:00
)) ?>
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 " >
2015-04-29 11:16:36 +02:00
< a href = " ?action=mark-feed-as-read&feed_id=<?= $feed['id'] ?> " data - action = " mark-feed-read " >< ? = t ( 'mark all as read' ) ?> </a>
2013-10-15 04:38:07 +02:00
</ div >
2013-07-13 04:16:40 +02:00
2015-08-29 03:34:34 +02:00
< ? = \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 ?>