Created
May 28, 2013 07:29
-
-
Save hissy/5661068 to your computer and use it in GitHub Desktop.
[concrete5] Foundation 4 style navigation in Page List Block template
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
<?php if ($showPagination): ?> | |
<nav class="pagination-centered"> | |
<ul class="pagination"> | |
<?php | |
$summary = $pl->getSummary(); | |
if ($summary->pages > 1): | |
$paginator = $pl->getPagination(); | |
$paginator->classCurrent = 'current'; | |
?> | |
<li class="arrow"><?php echo $paginator->getPrevious('«'); ?></li> | |
<?php echo $paginator->getPages('li'); ?> | |
<li class="arrow"><?php echo $paginator->getNext('»'); ?></li> | |
<?php endif; ?> | |
</ul> | |
</nav> | |
<?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment