8424b9bfb1
Unified the page-counters before. This makes processing of counters in javascript way more easier. The minimum required browser versions for the needed CSS3 selectors are IE9, Firefox 3.5 and Chrome 5. Confirmed working with IE9, Firefox 24.6, Chrome 36, Mobile Safari on iOS6. An unintended side effect of CSS brackets is that theme designers are able to implement there idea of brackets.
25 lines
1.0 KiB
PHP
25 lines
1.0 KiB
PHP
<?php if (empty($items)): ?>
|
|
<p class="alert alert-info"><?= t('No history') ?></p>
|
|
<?php else: ?>
|
|
|
|
<div class="page-header">
|
|
<h2><?= t('History') ?><span id="page-counter"><?= isset($nb_items) ? $nb_items : '' ?></span></h2>
|
|
<ul>
|
|
<li><a href="?action=confirm-flush-history"><?= t('flush all items') ?></a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<?php if ($nothing_to_read): ?>
|
|
<p class="alert"><?= t('There is nothing new to read, enjoy your previous readings!') ?></p>
|
|
<?php endif ?>
|
|
|
|
<section class="items" id="listing">
|
|
<?php foreach ($items as $item): ?>
|
|
<?= \PicoFarad\Template\load('item', array('item' => $item, 'menu' => $menu, 'offset' => $offset, 'hide' => true, 'display_mode' => $display_mode)) ?>
|
|
<?php endforeach ?>
|
|
|
|
<?= \PicoFarad\Template\load('paging', array('menu' => $menu, 'nb_items' => $nb_items, 'items_per_page' => $items_per_page, 'offset' => $offset, 'order' => $order, 'direction' => $direction)) ?>
|
|
</section>
|
|
|
|
<?php endif ?>
|