22 lines
413 B
Twig
22 lines
413 B
Twig
{#
|
|
/**
|
|
* @file
|
|
* Default theme implementation for a breadcrumb trail.
|
|
*
|
|
* Available variables:
|
|
* - breadcrumb: Breadcrumb trail items.
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
#}
|
|
{% if breadcrumb %}
|
|
<nav class="breadcrumb" role="navigation">
|
|
<h2 class="visually-hidden">{{ 'You are here'|t }}</h2>
|
|
<ol>
|
|
{% for item in breadcrumb %}
|
|
<li>{{ item }}</li>
|
|
{% endfor %}
|
|
</ol>
|
|
</nav>
|
|
{% endif %}
|