This file contains 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="nav prevnext"> | |
<? if($page->hasPrevVisible()): ?> | |
<a class="prev" href="<?= $page->prevVisible()->url() ?>">‹ previous article (<?php echo html($page->prevVisible()->title()) ?>)</a> | |
<? endif ?> | |
<? if($page->hasNextVisible()): ?> | |
<a class="next" href="<?= $page->nextVisible()->url() ?>">next article › (<?php echo html($page->nextVisible()->title()) ?>)</a> | |
<? endif ?> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment