4
0

htmlPagination.phtml 906 B

123456789101112131415161718192021
  1. <?php
  2. declare(strict_types=1);
  3. /** @var FreshRSS_View $this */
  4. ?>
  5. <nav class="nav-pagination nav-list">
  6. <ul class="pagination">
  7. <?php if (FreshRSS_Context::$offset > 0): ?>
  8. <li class="item pager-first">
  9. <a href="<?= $this->userQuery->sharedUrlHtml() . '&nb=' . FreshRSS_Context::$number ?>">« <?= _t('conf.logs.pagination.first') ?></a>
  10. </li>
  11. <li class="item pager-previous">
  12. <a href="<?= $this->userQuery->sharedUrlHtml() . '&nb=' . FreshRSS_Context::$number .
  13. '&offset=' . max(0, FreshRSS_Context::$offset - FreshRSS_Context::$number) ?>">‹ <?= _t('conf.logs.pagination.previous') ?></a>
  14. </li>
  15. <?php endif; ?>
  16. <li class="item pager-next">
  17. <a href="<?= $this->userQuery->sharedUrlHtml() . '&nb=' . FreshRSS_Context::$number .
  18. '&offset=' . (FreshRSS_Context::$offset + FreshRSS_Context::$number) ?>"><?= _t('conf.logs.pagination.next') ?> ›</a>
  19. </li>
  20. </ul>
  21. </nav>