about summary refs log tree commit diff stats
path: root/templates/language_switcher.html
blob: 3968c73edba4755cb6def63a08e8cc55d18b7376 (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 %}
        <strong>{{ tr.name }}</strong>
      {%- else %}
          <a href="{{ get_url(path=language_agnostic_path, lang=tr.code) ~ "/" }}" hreflang="{{ tr.code }}">{{ tr.name }}</a>
      {%- endif %}
    {%- endfor %}
  </nav>
{% endif %}