all repos — zola-bearblog @ a70fb3f413a205390b45943007400d5d9a06a72b

Port of bear blog theme to zola

Merge branch 'main' into microformats2

Alan Pearce
commit

a70fb3f413a205390b45943007400d5d9a06a72b

parent

fe37fcf3daa0eaafc1236050ac95b5d4ba21bcd2

1 file changed, 14 insertions(+), 3 deletions(-)

changed files
M templates/nav.htmltemplates/nav.html
@@ -1,10 +1,21 @@
-<a href="{{ config.base_url }}">Home</a> +{% set current_lang = config.default_language %} +{% if page %} + {% set current_lang = page.lang %} +{% elif section %} + {% set current_lang = section.lang %} +{% endif %} {%- if config.extra.main_menu %} {%- for item in config.extra.main_menu %} + {% if current_lang == config.default_language %} + {% set title = item.name %} + {% else %} + {% set language_key = 'name_' ~ current_lang %} + {% set title = item[language_key] %} + {% endif %} {%- if item.url is matching("https?://") %} - <a href="{{ item.url }}">{{ item.name }}</a> + <a href="{{ item.url }}">{{ title }}</a> {%- else %} - <a href="{{ get_url(path=item.url )}}">{{ item.name }}</a> + <a href="{{ get_url(path=item.url, lang=lang )}}">{{ title }}</a> {%- endif %} {%- endfor %} {%- endif -%}