You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/templates/partials/path.html

20 lines
716 B
HTML

5 years ago
<div class="location" data-fragment-id="path">
{% if not no_path_section %}
<div class="row"><div class="columns">
<div class="media">
<div class="media__body">
<div class="location-path">
{% for c in path %}
4 years ago
/ {% if loop.index < path.length %}<a href="{{ url(c[1], c[2])|default('#') }}">{{ c[0] if c[3] else _(c[0]) }}</a>{% endif %}
5 years ago
{%- endfor %}
</div>
<h1 class="location-current" data-emoji-enabled>{{ path[path.length - 1][0] if path[path.length - 1][2] else _(path[path.length - 1][0]) }}</h1>
5 years ago
</div>
<div class="media__right">
{% include "partials/hamburger.html" %}
</div>
</div>
</div></div>
{% endif %}
</div>