2013-06-04 13:38:54 +02:00
< ? php if ( empty ( $items )) : ?>
2013-06-15 14:39:16 +02: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-06 04:37:19 +02:00
< h2 >< ? = t ( 'Bookmarks' ) ?> (<?= $nb_items ?>)</h2>
2013-06-04 13:38:54 +02:00
</ div >
2013-07-12 05:41:45 +02:00
< section class = " items " id = " listing " >
2013-06-04 13:38:54 +02:00
< ? php foreach ( $items as $item ) : ?>
2013-07-27 03:00:39 +02:00
< article id = " item-<?= $item['id'] ?> " data - item - id = " <?= $item['id'] ?> " >
2013-06-04 13:38:54 +02:00
< h2 >
< a
2013-08-04 20:15:32 +02:00
href = " ?action=show&menu=bookmarks&id=<?= $item['id'] ?> "
2013-07-27 03:00:39 +02: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-23 03:38:09 +02: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-15 01:05:52 +02: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-15 05:12:08 +02:00
< ? = dt ( '%e %B %Y %k:%M' , $item [ 'updated' ]) ?> |
2013-07-21 18:32:00 +02:00
< span class = " hide-mobile " >
2013-08-04 20:15:32 +02:00
< a href = " ?action=bookmark&value=0&id=<?= $item['id'] ?>&menu=bookmarks&offset=<?= $offset ?> " >
2013-07-21 18:32:00 +02:00
< ? = t ( 'remove bookmark' ) ?>
</ a > |
</ span >
2013-06-04 13:38:54 +02:00
< a
href = " <?= $item['url'] ?> "
2013-07-27 03:00:39 +02:00
id = " original-<?= $item['id'] ?> "
2013-06-04 13:38:54 +02:00
rel = " noreferrer "
target = " _blank "
2013-07-27 03:00:39 +02:00
data - item - id = " <?= $item['id'] ?> "
2013-06-04 13:38:54 +02:00
>
< ? = t ( 'original link' ) ?>
</ a >
</ p >
</ article >
< ? php endforeach ?>
2013-07-06 04:37:19 +02:00
< nav id = " items-paging " >
< ? php if ( $offset > 0 ) : ?>
2013-07-06 16:50:37 +02:00
< a id = " previous-page " href = " ?action=bookmarks&offset=<?= ( $offset - $items_per_page ) ?> " > ⇽ < ? = t ( 'Previous page' ) ?> </a>
2013-07-06 04:37:19 +02:00
< ? php endif ?>
& nbsp ;
2013-07-06 16:50:37 +02: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-06 04:37:19 +02:00
< ? php endif ?>
</ nav >
2013-06-04 13:38:54 +02:00
</ section >
2013-06-27 01:30:46 +02:00
< ? php endif ?>