Файл: contao-3.5.8/system/modules/core/templates/modules/mod_booknav.xhtml
Строк: 20
<?php $this->extend('block_unsearchable'); ?>
<?php $this->block('content'); ?>
<ul>
<?php if ($this->hasPrev): ?>
<li class="prev"><a href="<?= $this->prevHref ?: './' ?>" title="<?= $this->prevPageTitle ?>">< <?= $this->prevLink ?></a></li>
<?php else: ?>
<li class="prev empty"> </li>
<?php endif; ?>
<?php if ($this->hasUp): ?>
<li class="up"><a href="<?= $this->upHref ?: './' ?>" title="<?= $this->upPageTitle ?>"><?= $this->upLink ?></a></li>
<?php else: ?>
<li class="up empty"> </li>
<?php endif; ?>
<?php if ($this->hasNext): ?>
<li class="next"><a href="<?= $this->nextHref ?: './' ?>" title="<?= $this->nextPageTitle ?>"><?= $this->nextLink ?> ></a></li>
<?php else: ?>
<li class="next empty"> </li>
<?php endif; ?>
</ul>
<?php $this->endblock(); ?>