зеркало из https://github.com/github/docs.git
12 строки
461 B
HTML
12 строки
461 B
HTML
<nav class="breadcrumbs f5" aria-label="Breadcrumb">
|
|
{% for breadcrumb in breadcrumbs %}
|
|
{% if breadcrumb[1].href == '' %}
|
|
<span>{{ breadcrumb[1].title }}</span>
|
|
{% else %}
|
|
<a title="{{ breadcrumb[0] }}: {{ breadcrumb[1].title }}" href="{{ breadcrumb[1].href }}" class="d-inline-block {% if breadcrumb[1].href == currentPath %}text-gray-light{% endif %}">
|
|
{{ breadcrumb[1].title }}
|
|
</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</nav>
|