blob: a300028cdb3a6bb910a8983445402f8247883878 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% if config.extra.language_switcher %}
<nav>
{%- 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 %}
<strong>{{ tr.name }}</strong>
{%- else %}
<a href="{{ get_url(path=language_agnostic_path, lang=tr.code) }}">{{ tr.name }}</a>
{%- endif %}
{%- endfor %}
</nav>
{% endif %}
|