all repos — zola-bearblog @ 333e97f135264c3c220063b2b64bf4dc0b508f34

Port of bear blog theme to zola

templates/language_switcher.html (view raw)

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 %}