2013-06-04 13:38:54 +02:00
< ? php if ( empty ( $items )) : ?>
2013-06-15 08:39:16 -04:00
< p class = " alert alert-info " >< ? = t ( 'No bookmark' ) ?> </p>
2013-06-04 13:38:54 +02:00
< ? php else : ?>
< div class = " page-header " >
2013-07-05 22:37:19 -04:00
< h2 >< ? = t ( 'Bookmarks' ) ?> (<?= $nb_items ?>)</h2>
2013-06-04 13:38:54 +02:00
</ div >
2013-07-11 23:41:45 -04:00
< section class = " items " id = " listing " >
2013-06-04 13:38:54 +02:00
< ? php foreach ( $items as $item ) : ?>
2013-07-26 21:00:39 -04:00
< article id = " item-<?= $item['id'] ?> " data - item - id = " <?= $item['id'] ?> " >
2013-06-04 13:38:54 +02:00
< h2 >
< a
2013-08-04 14:15:32 -04:00
href = " ?action=show&menu=bookmarks&id=<?= $item['id'] ?> "
2013-07-26 21:00:39 -04:00
data - item - id = " <?= $item['id'] ?> "
id = " open-<?= $item['id'] ?> "
2013-06-04 13:38:54 +02:00
>
< ? = Helper\escape ( $item [ 'title' ]) ?>
</ a >
</ h2 >
2013-08-22 21:38:09 -04:00
< p class = " preview " >
< ? = Helper\escape ( Helper\summary ( strip_tags ( $item [ 'content' ]), 50 , 300 )) ?>
</ p >
2013-06-04 13:38:54 +02: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-06-14 23:12:08 -04:00
< ? = dt ( '%e %B %Y %k:%M' , $item [ 'updated' ]) ?> |
2013-07-21 12:32:00 -04:00
< span class = " hide-mobile " >
2013-08-04 14:15:32 -04:00
< a href = " ?action=bookmark&value=0&id=<?= $item['id'] ?>&menu=bookmarks&offset=<?= $offset ?> " >
2013-07-21 12:32:00 -04:00
< ? = t ( 'remove bookmark' ) ?>
</ a > |
</ span >
2013-06-04 13:38:54 +02:00
< a
href = " <?= $item['url'] ?> "
2013-07-26 21:00:39 -04:00
id = " original-<?= $item['id'] ?> "
2013-06-04 13:38:54 +02:00
rel = " noreferrer "
target = " _blank "
2013-07-26 21:00:39 -04:00
data - item - id = " <?= $item['id'] ?> "
2013-06-04 13:38:54 +02:00
>
< ? = t ( 'original link' ) ?>
</ a >
</ p >
</ article >
< ? php endforeach ?>
2013-07-05 22:37:19 -04:00
< nav id = " items-paging " >
< ? php if ( $offset > 0 ) : ?>
2013-07-06 10:50:37 -04:00
< a id = " previous-page " href = " ?action=bookmarks&offset=<?= ( $offset - $items_per_page ) ?> " > ⇽ < ? = 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 ) : ?>
< a id = " next-page " href = " ?action=bookmarks&offset=<?= ( $offset + $items_per_page ) ?> " >< ? = t ( 'Next page' ) ?> ⇾</a>
2013-07-05 22:37:19 -04:00
< ? php endif ?>
</ nav >
2013-06-04 13:38:54 +02:00
</ section >
2013-06-26 19:30:46 -04:00
< ? php endif ?>