blob: a7f8478e15fc23b7d924f5af31c5ed05f1a908fd (
plain)
1
2
3
4
5
6
7
8
|
<?php
declare(strict_types=1);
?>
<nav id="nav_entries">
<button class="previous_entry" title="<?= _t('gen.action.nav_buttons.prev') ?>"><?= _i('prev') ?></button>
<button class="up" title="<?= _t('gen.action.nav_buttons.up') ?>"><?= _i('up') ?></button>
<button class="next_entry" title="<?= _t('gen.action.nav_buttons.next') ?>"><?= _i('next') ?></button>
</nav>
|