25 lines
479 B
Twig
25 lines
479 B
Twig
{#
|
|
/**
|
|
* @file
|
|
* Default theme implementation for a breadcrumb trail.
|
|
*
|
|
* Available variables:
|
|
* - breadcrumb: Breadcrumb trail items.
|
|
*
|
|
* @ingroup templates
|
|
*/
|
|
#}
|
|
{% if breadcrumb %}
|
|
<ol class="breadcrumb">
|
|
{% for item in breadcrumb %}
|
|
<li {{ item.attributes }}>
|
|
{% if item.url %}
|
|
<a href="{{ item.url }}">{{ item.text }}</a>
|
|
{% else %}
|
|
{{ item.text }}
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ol>
|
|
{% endif %}
|