src/Rhyme/WMassArtsHub/Resources/contao/templates/navigation/nav_pagesnav.html5 line 3

Open in your IDE?
  1. <ul class="<?= $this->level ?>">
  2.     <?php foreach ($this->items as $item): ?>
  3.         <li<?php if ($item['class']): ?> class="<?= $item['class'?>"<?php endif; ?>><a href="<?= $item['href'] ?: './' ?>" title="<?= $item['title'] . ' | ArtsHub of Western Mass' ?>"<?php if ($item['class']): ?> class="<?= $item['class'?>"<?php endif; ?><?php if ('' !== $item['accesskey']): ?> accesskey="<?= $item['accesskey'?>"<?php endif; ?><?php if ($item['tabindex']): ?> tabindex="<?= $item['tabindex'?>"<?php endif; ?><?= $item['target'?><?= $item['rel'?><?php if (!empty($item['subitems'])): ?> aria-haspopup="true"<?php endif; ?> itemprop="url"><span itemprop="name"><?= $item['link'?></span></a><?= $item['subitems'?></li>
  4.     <?php endforeach; ?>
  5. </ul>