Skip to content

Instantly share code, notes, and snippets.

@hissy
Created May 28, 2013 07:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hissy/5661068 to your computer and use it in GitHub Desktop.
Save hissy/5661068 to your computer and use it in GitHub Desktop.
[concrete5] Foundation 4 style navigation in Page List Block template
<?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('&laquo;'); ?></li>
<?php echo $paginator->getPages('li'); ?>
<li class="arrow"><?php echo $paginator->getNext('&raquo;'); ?></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