Last active
August 29, 2015 13:57
-
-
Save quynguyen3490/9670382 to your computer and use it in GitHub Desktop.
A template Pagination: Foundation 5 + Cakephp
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
<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