summaryrefslogtreecommitdiff
path: root/localwebsite/templates-web/bc.twig
blob: b74ad4028faa0aadfd32593755134ddbb5ba4503 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<nav aria-label="breadcrumb">
    <ol class="breadcrumb">
        <li class="breadcrumb-item"><a href="/">Главная</a></li>
        {% for item in history %}
            <li class="breadcrumb-item"{% if loop.last %} aria-current="page"{% endif %}>
                {% if item.link %}<a href="{{ item.link }}">{% endif %}
                {{ item.html ? item.html|raw : item.text }}
                {% if item.link %}</a>{% endif %}
            </li>
        {% endfor %}
    </ol>
</nav>