-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pager.php
31 lines (31 loc) · 910 Bytes
/
pager.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<nav class="pager">
<ul>
<li>
<?php if ($prev = $pager->prev): ?>
<a href="<?= eat($prev->link); ?>" rel="prev" title="<?= eat($prev->description); ?>">
<?= i('Newer %s', 'Posts'); ?>
</a>
<?php endif; ?>
</li>
<li>
<?php if ($parent = $page->parent): ?>
<a href="<?= eat($parent->url); ?>" title="<?= eat($parent->description); ?>">
<?= $parent->title ?? i('Parent'); ?>
</a>
<?php else: ?>
<?php if (!$site->is('home')): ?>
<a href="<?= eat($url); ?>">
<?= i('Home'); ?>
</a>
<?php endif; ?>
<?php endif; ?>
</li>
<li>
<?php if ($next = $pager->next): ?>
<a href="<?= eat($next->link); ?>" rel="next" title="<?= eat($next->description); ?>">
<?= i('Older %s', 'Posts'); ?>
</a>
<?php endif; ?>
</li>
</ul>
</nav>