vendor/contao/core-bundle/src/Resources/contao/templates/modules/mod_breadcrumb.html5 line 28

Open in your IDE?
  1. <!-- indexer::stop -->
  2. <nav class="<?= $this->class ?> block"<?= $this->cssID ?><?php if ($this->style): ?> style="<?= $this->style ?>"<?php endif; ?> aria-label="Breadcrumb">
  3.   <?php $this->block('headline'); ?>
  4.     <?php if ($this->headline): ?>
  5.       <<?= $this->hl ?>><?= $this->headline ?></<?= $this->hl ?>>
  6.     <?php endif; ?>
  7.   <?php $this->endblock(); ?>
  8.   <?php $this->block('content'); ?>
  9.     <ul>
  10.       <?php foreach ($this->items as $item): ?>
  11.         <?php if ($item['isActive']): ?>
  12.           <li class="active<?php if (!empty($item['class'])): ?> <?= $item['class'?><?php endif; ?> last" aria-current="page"><?= $item['link'?></li>
  13.         <?php else: ?>
  14.           <li<?php if (!empty($item['class'])): ?> class="<?= $item['class'?>"<?php endif; ?>><a href="<?= $item['href'] ?: './' ?>" title="<?= $item['title'?>"><?= $item['link'?></a></li>
  15.         <?php endif; ?>
  16.       <?php endforeach; ?>
  17.     </ul>
  18.   <?php $this->endblock(); ?>
  19. </nav>
  20. <!-- indexer::continue -->
  21. <?php
  22. $this->addSchemaOrg($this->getSchemaOrgData());