Created
March 1, 2012 14:49
-
-
Save niklausgerber/1950250 to your computer and use it in GitHub Desktop.
Separator
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($page->hasPrev()): ?> | |
« <a href="<?php echo $page->prev()->url() ?>">Previous</a> | |
<?php endif ?> | |
| //Separator: Should only show up between "Previous | Next" but not if there is just one. | |
<?php if($page->hasNext()): ?> | |
<a href="<?php echo $page->next()->url() ?>">Next</a> » | |
<?php endif ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment