mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-18 11:40:57 +01:00
9 lines
476 B
Twig
9 lines
476 B
Twig
<ol class="breadcrumb">
|
|
<li><a href="{{ path('tree', {repo: repo, commitishPath: branch}) }}">{{ repo }}</a></li>
|
|
{% for breadcrumb in breadcrumbs %}
|
|
<li{% if loop.last %} class="active"{% endif %}>{% if not loop.last %}<a href="{{ path('tree', {repo: repo, commitishPath: branch ~ '/' ~ breadcrumb.path}) }}">{{ breadcrumb.dir }}</a>{% endif %}{% if loop.last %}{{ breadcrumb.dir }}{% endif %}</li>
|
|
{% endfor %}
|
|
|
|
{% block extra %}{% endblock %}
|
|
</ol>
|