Skip to content

Instantly share code, notes, and snippets.

View PaulMorel's full-sized avatar
🏠
Working from home

Paul Morel PaulMorel

🏠
Working from home
View GitHub Profile
@PaulMorel
PaulMorel / breadcrumb.php
Last active August 29, 2015 14:18 — forked from About2git/Kirby Semantic Breadcrumb based on WordPress Seo
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>