Created
November 23, 2018 10:18
-
-
Save dimobelov/8e9af9d1db7937326b8611973fb13899 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Pagination --> | |
<?php if (Paginator::numberOfPages()>1): ?> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-12 text-center"> | |
<nav class="pagination" role="navigation"> | |
<div class="row"> | |
<div class="col-4 text-left"> | |
<?php if (Paginator::showPrev()):?> | |
<a class="newer-posts btn" href="<?php echo Paginator::previousPageUrl() ?>"> | |
<?php echo $L->get('Newer'); ?> | |
</a> | |
<?php endif; ?> | |
</div> | |
<div class="col-4"> | |
<span class="page-number"> | |
<?php echo Paginator::currentPage() ?> / <?php echo Paginator::numberOfPages() ?> | |
</span> | |
</div> | |
<div class="col-4 text-right"> | |
<?php if (Paginator::showNext()):?> | |
<a class="older-posts btn" href="<?php echo Paginator::nextPageUrl() ?>"> | |
<?php echo $L->get('Older'); ?> | |
</a> | |
<?php endif; ?> | |
</div> | |
</div> | |
</nav> | |
</div> | |
</div> | |
</div> | |
<?php endif ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment