Skip to content

Instantly share code, notes, and snippets.

@quynguyen3490
Last active August 29, 2015 13:57
Show Gist options
  • Save quynguyen3490/9670382 to your computer and use it in GitHub Desktop.
Save quynguyen3490/9670382 to your computer and use it in GitHub Desktop.
A template Pagination: Foundation 5 + Cakephp
<div class="row">
<div class="small-12 columns pagination-centered">
<ul class="pagination">
<?php
echo $this->Paginator->prev('<<',
array(
'tag'=>'li',
'disabledTag'=>'a'
));
echo $this->Paginator->numbers(array(
'tag'=>'li',
'separator'=>'',
'currentTag'=>'a'
));
echo $this->Paginator->next('>>',
array(
'tag'=>'li',
'disabledTag'=>'a'
));
?>
</ul>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment