2013-02-17 21:48:21 -05:00
< ? php if ( empty ( $items )) : ?>
2013-04-12 21:08:55 -04:00
< p class = " alert alert-info " >< ? = t ( 'Nothing to read' ) ?> </p>
2013-02-17 21:48:21 -05:00
< ? php else : ?>
< div class = " page-header " >
2013-08-07 20:18:48 -04:00
< h2 >< ? = t ( '<span id="page-counter">%s</span>unread items' , isset ( $nb_items ) ? $nb_items . ' ' : '' ) ?> </h2>
2013-02-17 21:48:21 -05:00
< ul >
2013-07-16 09:00:14 -04:00
< li >
2013-09-18 21:02:46 -04:00
< a href = " ?action=unread&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-14 19:05:52 -04:00
</ li >
< li >
< a href = " ?action=mark-as-read " data - action = " mark-all-read " >< ? = t ( 'mark all as read' ) ?> </a>
2013-07-16 09:00:14 -04:00
</ li >
2013-02-17 21:48:21 -05:00
</ ul >
</ div >
2013-04-02 22:49:14 -04:00
< section class = " items " id = " listing " >
2013-02-17 21:48:21 -05:00
< ? php foreach ( $items as $item ) : ?>
2013-07-26 21:00:39 -04:00
< article id = " item-<?= $item['id'] ?> " data - item - id = " <?= $item['id'] ?> " data - item - page = " <?= $menu ?> " data - hide = " true " >
2013-04-02 22:49:14 -04:00
< h2 >
2013-06-14 23:12:08 -04:00
< ? = $item [ 'bookmark' ] ? '★ ' : '' ?>
2013-04-02 22:49:14 -04:00
< a
2013-08-04 14:15:32 -04:00
href = " ?action=show&menu=unread&id=<?= $item['id'] ?> "
2013-07-26 21:00:39 -04:00
data - item - id = " <?= $item['id'] ?> "
id = " open-<?= $item['id'] ?> "
2013-04-02 22:49:14 -04:00
>
< ? = Helper\escape ( $item [ 'title' ]) ?>
</ a >
</ h2 >
2013-03-17 18:16:25 -04:00
< p class = " preview " >
< ? = Helper\escape ( Helper\summary ( strip_tags ( $item [ 'content' ]), 50 , 300 )) ?>
</ p >
2013-02-17 21:48:21 -05:00
< p >
2013-09-14 19:05:52 -04:00
< a href = " ?action=feed-items&feed_id=<?= $item['feed_id'] ?> " title = " <?= t('Show only this subscription') ?> " >< ? = Helper\escape ( $item [ 'feed_title' ]) ?> </a> |
2013-07-19 20:39:49 -04:00
< span class = " hide-mobile " >< ? = dt ( '%e %B %Y %k:%M' , $item [ 'updated' ]) ?> |</span>
2013-06-10 14:50:06 +02:00
2013-07-19 20:39:49 -04:00
< span class = " hide-mobile " >
2013-06-14 23:12:08 -04:00
< ? php if ( $item [ 'bookmark' ]) : ?>
2013-08-04 14:15:32 -04:00
< a id = " bookmark-<?= $item['id'] ?> " href = " ?action=bookmark&value=0&id=<?= $item['id'] ?>&menu=unread&offset=<?= $offset ?> " >< ? = t ( 'remove bookmark' ) ?> </a> |
2013-06-10 14:50:06 +02:00
< ? php else : ?>
2013-08-04 14:15:32 -04:00
< a id = " bookmark-<?= $item['id'] ?> " href = " ?action=bookmark&value=1&id=<?= $item['id'] ?>&menu=unread&offset=<?= $offset ?> " >< ? = t ( 'bookmark' ) ?> </a> |
2013-06-10 14:50:06 +02:00
< ? php endif ?>
2013-07-19 20:39:49 -04:00
</ span >
2013-06-10 14:50:06 +02:00
2013-07-13 16:29:30 -04:00
< a
2013-07-26 21:00:39 -04:00
href = " ?action=mark-item-read&id=<?= $item['id'] ?>&offset=<?= $offset ?> "
2013-07-13 16:29:30 -04:00
data - action = " mark-read "
2013-07-26 21:00:39 -04:00
data - item - id = " <?= $item['id'] ?> "
2013-07-13 16:29:30 -04:00
>
< ? = t ( 'mark as read' ) ?>
</ a > |
2013-04-02 22:49:14 -04:00
< a
href = " <?= $item['url'] ?> "
2013-07-26 21:00:39 -04:00
id = " original-<?= $item['id'] ?> "
2013-04-02 22:49:14 -04:00
rel = " noreferrer "
target = " _blank "
2013-07-26 21:00:39 -04:00
data - item - id = " <?= $item['id'] ?> "
2013-07-13 16:29:30 -04:00
data - action = " original-link "
2013-07-11 23:41:45 -04:00
data - hide = " true "
2013-04-02 22:49:14 -04:00
>
2013-04-12 21:08:55 -04:00
< ? = t ( 'original link' ) ?>
2013-04-02 22:49:14 -04:00
</ a >
2013-02-17 21:48:21 -05:00
</ p >
</ article >
< ? php endforeach ?>
2013-07-05 22:37:19 -04:00
2013-09-14 20:22:14 -04:00
< div id = " bottom-menu " >
< a href = " ?action=mark-as-read " data - action = " mark-all-read " >< ? = t ( 'mark all as read' ) ?> </a>
</ div >
< div id = " items-paging " >
2013-07-05 22:37:19 -04:00
< ? php if ( $offset > 0 ) : ?>
2013-09-14 20:22:14 -04:00
< a id = " previous-page " href = " ?action=unread&offset=<?= ( $offset - $items_per_page ) ?>&order=<?= $order ?>&direction=<?= $direction ?> " > « < ? = t ( 'Previous page' ) ?> </a>
2013-07-05 22:37:19 -04:00
< ? php endif ?>
& nbsp ;
2013-07-06 10:50:37 -04:00
< ? php if (( $nb_items - $offset ) > $items_per_page ) : ?>
2013-09-14 20:22:14 -04:00
< a id = " next-page " href = " ?action=unread&offset=<?= ( $offset + $items_per_page ) ?>&order=<?= $order ?>&direction=<?= $direction ?> " >< ? = t ( 'Next page' ) ?> »</a>
2013-07-05 22:37:19 -04:00
< ? php endif ?>
2013-09-14 20:22:14 -04:00
</ div >
2013-07-05 22:37:19 -04:00
2013-02-17 21:48:21 -05:00
</ section >
2013-06-04 13:38:54 +02:00
< ? php endif ?>