2013-07-13 04:16:40 +02:00
< ? php if ( empty ( $items )) : ?>
2013-09-15 01:05:52 +02:00
< p class = " alert " >
< ? = t ( 'This subscription is empty, <a href="?action=unread">go back to unread items</a>' ) ?>
</ p >
2013-07-13 04:16:40 +02:00
< ? php else : ?>
< div class = " page-header " >
< h2 >< ? = Helper\escape ( $feed [ 'title' ]) ?> (<?= $nb_items ?>)</h2>
2013-09-15 01:05:52 +02:00
< ul >
< li >
< a href = " ?action=feed-items&feed_id=<?= $feed['id'] ?>&order=updated&direction=<?= $direction == 'asc' ? 'desc' : 'asc' ?> " >< ? = t ( 'sort by date (%s)' , $direction == 'desc' ? t ( 'older' ) : t ( 'most recent' )) ?> </a>
</ 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 " >
< ? php foreach ( $items as $item ) : ?>
2013-09-15 01:05:52 +02:00
< article id = " item-<?= $item['id'] ?> " data - item - id = " <?= $item['id'] ?> " data - item - page = " <?= $menu ?> " data - hide = " true " >
2013-07-13 04:16:40 +02:00
< h2 >
< ? = $item [ 'bookmark' ] ? '★ ' : '' ?>
< a
2013-08-04 20:15:32 +02:00
href = " ?action=show&menu=feed-items&id=<?= $item['id'] ?> "
2013-07-27 03:00:39 +02:00
data - item - id = " <?= $item['id'] ?> "
id = " open-<?= $item['id'] ?> "
2013-07-13 04:16:40 +02:00
>
< ? = Helper\escape ( $item [ 'title' ]) ?>
</ a >
</ h2 >
2013-08-23 03:38:09 +02:00
< p class = " preview " >
< ? = Helper\escape ( Helper\summary ( strip_tags ( $item [ 'content' ]), 50 , 300 )) ?>
</ p >
2013-07-13 04:16:40 +02:00
< p >
< ? = Helper\get_host_from_url ( $item [ 'url' ]) ?> |
< ? = dt ( '%e %B %Y %k:%M' , $item [ 'updated' ]) ?> |
< a
href = " <?= $item['url'] ?> "
2013-07-27 03:00:39 +02:00
id = " original-<?= $item['id'] ?> "
2013-07-13 04:16:40 +02:00
rel = " noreferrer "
target = " _blank "
2013-07-27 03:00:39 +02:00
data - item - id = " <?= $item['id'] ?> "
2013-07-13 04:16:40 +02:00
>
< ? = t ( 'original link' ) ?>
</ a >
</ p >
</ article >
< ? php endforeach ?>
< nav id = " items-paging " >
< ? php if ( $offset > 0 ) : ?>
2013-09-15 01:05:52 +02:00
< a id = " previous-page " href = " ?action=feed-items&feed_id=<?= $feed['id'] ?>&offset=<?= ( $offset - $items_per_page ) ?>&order=<?= $order ?>&direction=<?= $direction ?> " > ⇽ < ? = t ( 'Previous page' ) ?> </a>
2013-07-13 04:16:40 +02:00
< ? php endif ?>
& nbsp ;
< ? php if (( $nb_items - $offset ) > $items_per_page ) : ?>
2013-09-15 01:05:52 +02:00
< a id = " next-page " href = " ?action=feed-items&feed_id=<?= $feed['id'] ?>&offset=<?= ( $offset + $items_per_page ) ?>&order=<?= $order ?>&direction=<?= $direction ?> " >< ? = t ( 'Next page' ) ?> ⇾</a>
2013-07-13 04:16:40 +02:00
< ? php endif ?>
</ nav >
</ section >
< ? php endif ?>