mikuli.cz

:)
git clone https://git.sr.ht/~ashymad/mikuli.cz
Log | Files | Refs

pagination.html (668B)


      1 <?php list($name, $pages) = $this->yellow->getLayoutArguments() ?>
      2 <?php if ($pages->isPagination()): ?>
      3 <div class="pagination" role="navigation" aria-label="<?php echo $this->yellow->language->getTextHtml("corePagination") ?>">
      4 <?php if ($pages->getPaginationPrevious()): ?>
      5 <a class="previous" href="<?php echo $pages->getPaginationPrevious() ?>"><?php echo $this->yellow->language->getTextHtml("corePaginationPrevious") ?></a>
      6 <?php endif ?>
      7 <?php if ($pages->getPaginationNext()): ?>
      8 <a class="next" href="<?php echo $pages->getPaginationNext() ?>"><?php echo $this->yellow->language->getTextHtml("corePaginationNext") ?></a>
      9 <?php endif ?>
     10 </div>
     11 <?php endif ?>