mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
15 lines
548 B
PHP
15 lines
548 B
PHP
<nav class="post-navigation">
|
|
<?php if ($prevPost = $post->getPrevPost()): ?>
|
|
<a
|
|
href="<?php echo $prevPost->getRelativeUrl() ?>"
|
|
title="Read '<?php echo htmlentities($prevPost->getTitle()) ?>'"
|
|
>← <?php echo htmlentities($prevPost->getTitle()) ?></a>
|
|
<?php endif ?>
|
|
|
|
<?php if ($nextPost = $post->getNextPost()): ?>
|
|
<a
|
|
href="<?php echo $nextPost->getRelativeUrl() ?>"
|
|
title="Read '<?php echo htmlentities($nextPost->getTitle()) ?>'"
|
|
><?php echo htmlentities($nextPost->getTitle()) ?> →</a>
|
|
<?php endif ?>
|
|
</nav>
|