mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-18 03:30:55 +01:00
10 lines
486 B
Twig
10 lines
486 B
Twig
<ul class="breadcrumb">
|
|
<li><a href="{{ path('repository', {repo: repo}) }}">{{ repo }}</a></li>
|
|
{% for breadcrumb in breadcrumbs %}
|
|
<span class="divider">/</span>
|
|
<li{% if loop.last %} class="active"{% endif %}>{% if not loop.last %}<a href="{{ path('tree_dir', {repo: repo, branch: branch, tree: breadcrumb.path}) }}">{{ breadcrumb.dir }}</a>{% endif %}{% if loop.last %}{{ breadcrumb.dir }}{% endif %}</li>
|
|
{% endfor %}
|
|
|
|
{% block extra %}{% endblock %}
|
|
</ul>
|