blob: 512b409f6d198e3de9456bf571e371959f9154b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% if config.extra.language_switcher %}
<nav class="lang">
{%- set language_agnostic_path = current_path | default(value="/") | replace(from='/' ~ lang ~ '/', to = '/') | trim_start_matches(pat = '/') -%}
{%- for tr in config.extra.translations %}
{%- if tr.code == lang %}
<active>{{ tr.name }}</active>
{%- else %}
<a href="{{ get_url(path=language_agnostic_path, lang=tr.code) ~ "/" }}" hreflang="{{ tr.code }}">{{ tr.name }}</a>
{%- endif %}
{%- endfor %}
</nav>
{% endif %}
|