Файл: contao-3.5.8/system/modules/calendar/templates/modules/mod_eventmenu_year.xhtml
Строк: 31
<?php $this->extend('block_unsearchable'); ?>
<?php $this->block('content'); ?>
<ul class="level_1">
<?php foreach ($this->items as $year=>$month): ?>
<?php if($month['isActive']): ?>
<li class="active<?php if ($month['class']) echo ' ' . $month['class']; ?>"><span class="active"><?= $month['link'] ?><?php if ($this->showQuantity): ?> (<?= $month['quantity'] ?>)<?php endif; ?></span></li>
<?php else: ?>
<li<?php if ($month['class']): ?> class="<?= $month['class'] ?>"<?php endif; ?>><a href="<?= $month['href'] ?>" title="<?= $month['title'] ?>"><?= $month['link'] ?><?php if ($this->showQuantity): ?> (<?= $month['quantity'] ?>)<?php endif; ?></a></li>
<?php endif; ?>
<?php endforeach; ?>
</ul>
<?php $this->endblock(); ?>