Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save PaulMorel/99e04108a99c068002a9 to your computer and use it in GitHub Desktop.
Save PaulMorel/99e04108a99c068002a9 to your computer and use it in GitHub Desktop.
Kirby 2 Semantic Breadcrumb with Schema.org Microformats
<nav class="breadcrumb" itemprop="breadcrumb">
<ol itemscope itemtype="https://schema.org/BreadcrumbList">
<?php foreach($site->breadcrumb() as $crumb): ?>
<?php if ($crumb->isActive()): ?>
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<span itemprop="item">
<span itemprop="name">
<?php echo $crumb->title() ?>
</span>
</span>
<meta itemprop="position" content="<?php echo $crumb->depth() ?>">
</li>
<?php else: ?>
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a href="<?php echo $crumb->url() ?>" itemprop="item">
<span itemprop="name">
<?php echo $crumb->title() ?>
</span>
</a>
<meta itemprop="position" content="<?php echo $crumb->depth() ?>">
</li>
<?php endif ?>
<?php endforeach ?>
</ol>
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment