-
-
Save bastianallgeier/1957544 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 ?> | |
<?php if($page->hasPrev() && $page->hasNext()): ?> | |
| //Separator: Should only show up between "Previous | Next" but not if there is just one. | |
<?php endif ?> | |
<?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