{% macro logo() %} {% if config.extra.logo.path %} {% else %} {{ config.extra.logo.text | default(value="home") }} {% endif %} {% endmacro logo %} {% macro navbar(current_lang) %} {% if config.extra.header_nav %} {{ self::logo() }} {% for nav_item in config.extra.header_nav %} {% set language_key = 'name_' ~ current_lang %}{{ nav_item[language_key] }} {% endfor %} {% endif %} {% endmacro navbar %} {% macro footer() %}
Licensed under the MIT License. Built with Zola using the friendenstein theme.