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 >
2013-09-19 03:02:46 +02:00
< a href = " ?action=feed-items&feed_id=<?= $feed['id'] ?>&order=updated&direction=<?= $direction == 'asc' ? 'desc' : 'asc' ?> " >< ? = t ( '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 " >
< ? php foreach ( $items as $item ) : ?>
2013-10-11 04:18:12 +02:00
< article id = " item-<?= $item['id'] ?> " data - item - id = " <?= $item['id'] ?> " data - item - page = " <?= $menu ?> " >
2013-07-13 04:16:40 +02:00
< h2 >
2013-10-11 04:18:12 +02:00
< ? = $item [ 'bookmark' ] ? '<span id="bookmark-icon-' . $item [ 'id' ] . '">★ </span>' : '' ?>
< ? = $item [ 'status' ] === 'read' ? '<span id="read-icon-' . $item [ 'id' ] . '">☑ </span>' : '' ?>
2013-07-13 04:16:40 +02:00
< 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-10-08 04:17:46 +02:00
< ? = $item [ 'status' ] === 'read' ? 'class="read"' : '' ?>
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' ]) ?> |
2013-10-11 04:18:12 +02:00
< span class = " hide-mobile " >< ? = dt ( '%e %B %Y %k:%M' , $item [ 'updated' ]) ?> |</span>
< span class = " hide-mobile " >
< ? php if ( $item [ 'bookmark' ]) : ?>
< a id = " bookmark-<?= $item['id'] ?> " href = " ?action=bookmark&value=0&id=<?= $item['id'] ?>&menu=feed-items&offset=<?= $offset ?>&feed_id=<?= $item['feed_id'] ?> " >< ? = t ( 'remove bookmark' ) ?> </a> |
< ? php else : ?>
< a id = " bookmark-<?= $item['id'] ?> " href = " ?action=bookmark&value=1&id=<?= $item['id'] ?>&menu=feed-items&offset=<?= $offset ?>&feed_id=<?= $item['feed_id'] ?> " >< ? = t ( 'bookmark' ) ?> </a> |
< ? php endif ?>
</ span >
< ? php if ( $item [ 'status' ] == 'unread' ) : ?>
< a
href = " ?action=mark-item-read&id=<?= $item['id'] ?>&offset=<?= $offset ?>&redirect=feed-items&feed_id=<?= $item['feed_id'] ?> "
>
< ? = t ( 'mark as read' ) ?>
</ a > |
< ? php else : ?>
< a
href = " ?action=mark-item-unread&id=<?= $item['id'] ?>&offset=<?= $offset ?>&redirect=feed-items&feed_id=<?= $item['feed_id'] ?> "
>
< ? = t ( 'mark as unread' ) ?>
</ a > |
< ? php endif ?>
< span class = " hide-mobile " >
< a href = " ?action=mark-item-removed&id=<?= $item['id'] ?>&offset=<?= $offset ?>&redirect=feed-items&feed_id=<?= $item['feed_id'] ?> " >< ? = t ( 'remove' ) ?> </a> |
</ span >
2013-07-13 04:16:40 +02:00
< 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 ?>
2013-09-15 02:22:14 +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 >
< div id = " items-paging " >
2013-07-13 04:16:40 +02:00
< ? php if ( $offset > 0 ) : ?>
2013-09-15 02:22:14 +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>
& nbsp ; -& nbsp ;
2013-07-13 04:16:40 +02:00
< ? php endif ?>
& nbsp ;
< ? php if (( $nb_items - $offset ) > $items_per_page ) : ?>
2013-09-15 02:22:14 +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 ?>
2013-09-15 02:22:14 +02:00
</ div >
2013-07-13 04:16:40 +02:00
</ section >
< ? php endif ?>