This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
blarg/resources/views/breadcrumbs.html

9 lines
251 B
HTML
Raw Normal View History

2013-05-20 17:43:38 -04:00
<ul class="breadcrumb">
{% for crumb in breadcrumbs %}
{% if loop.last %}
<li class="active">{{ crumb.name }}</li>
2013-05-20 17:43:38 -04:00
{% else %}
<li><a href="{{ path(crumb.url) }}">{{ crumb.name }}</a> <span class="divider">/</span></li>
2013-05-20 17:43:38 -04:00
{% endif %}
{% endfor %}
</ul>