-
-
Save vuchkov/2e6c7eeea28a65c7abf383a023fd4def to your computer and use it in GitHub Desktop.
Revisions
-
thejimbirch created this gist
Apr 13, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ {# /** * @file * Theme override for a breadcrumb trail. * * Available variables: * - breadcrumb: Breadcrumb trail items. */ #} {% if breadcrumb %} <ol itemscope itemtype="http://schema.org/BreadcrumbList" class="breadcrumbs" aria-label="breadcrumb"> {% for item in breadcrumb %} <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> {% if item.url %} <a itemprop="item" href="{{ item.url }}"> <span itemprop="name">{{ item.text }}</span> <meta itemprop="position" content="{{ loop.index }}" /> </a> {% else %} <span itemprop="item"> <span itemscope itemprop="identifier" itemtype="http://schema.org/PropertyValue" hidden> <meta itemprop="url">{{ url('<current>') }}</span> </span> <span itemprop="name">{{ item.text }}</span> <meta itemprop="position" content="{{ loop.index }}" /> </span> {% endif %} </li> {% endfor %} </ol> {% endif %}