| Current Path : /home/jeromecohp/www/templates/yootheme/templates/ |
| Current File : /home/jeromecohp/www/templates/yootheme/templates/pagination.php |
<?php
use Joomla\CMS\Language\Text;
// Config
$blog = '~theme.blog';
?>
<?php if ($pagination->pagesTotal > 1) : ?>
<?php if ($config("$blog.navigation") == 'pagination') : ?>
<?= $pagination->getPagesLinks() ?>
<?php elseif ($config("$blog.navigation") == 'previous/next') : ?>
<nav class="uk-margin-large">
<ul class="uk-pagination uk-margin-remove-bottom">
<?php if ($prevlink = $pagination->getData()->previous->link) : ?>
<li><a href="<?= $prevlink ?>"><span uk-pagination-previous></span> <?= Text::_('JPREV') ?></a></li>
<?php endif ?>
<?php if ($nextlink = $pagination->getData()->next->link) : ?>
<li class="uk-margin-auto-left"><a href="<?= $nextlink ?>"><?= Text::_('JNEXT') ?> <span uk-pagination-next></span></a></li>
<?php endif ?>
</ul>
</nav>
<?php endif ?>
<?php endif ?>