Файл: contao-3.5.8/system/modules/core/templates/modules/mod_article_nav.xhtml
Строк: 35
<!-- indexer::stop -->
<div class="<?= $this->class ?> pagination block"<?= $this->cssID ?><?php if ($this->style): ?> style="<?= $this->style ?>"<?php endif; ?>>
<?php if ($this->headline): ?>
<<?= $this->hl ?>><?= $this->headline ?></<?= $this->hl ?>>
<?php endif; ?>
<ul>
<?php if ($this->first): ?>
<li class="first"><a href="<?= $this->first['href'] ?>" class="first" title="<?= $this->first['title'] ?>"><?= $this->first['link'] ?></a></li>
<?php endif; ?>
<?php if ($this->previous): ?>
<li class="previous"><a href="<?= $this->previous['href'] ?>" class="previous" title="<?= $this->previous['title'] ?>"><?= $this->previous['link'] ?></a></li>
<?php endif; ?>
<?php foreach ($this->articles as $article): ?>
<?php if ($article['isActive']): ?>
<li class="current"><span class="current"><?= $article['link'] ?></span></li>
<?php else: ?>
<li class="link"><a href="<?= $article['href'] ?>" class="link" title="<?= $article['title'] ?>"><?= $article['link'] ?></a></li>
<?php endif; ?>
<?php endforeach; ?>
<?php if ($this->next): ?>
<li class="next"><a href="<?= $this->next['href'] ?>" class="next" title="<?= $this->next['title'] ?>"><?= $this->next['link'] ?></a></li>
<?php endif; ?>
<?php if ($this->last): ?>
<li class="last"><a href="<?= $this->last['href'] ?>" class="last" title="<?= $this->last['title'] ?>"><?= $this->last['link'] ?></a></li>
<?php endif; ?>
</ul>
</div>
<!-- indexer::continue -->