{% macro render_header(path) %} {% set root = get_section(path="_index.md") %} {{ config.extra.juice_logo_name }} {% if config.extra.juice_extra_menu %} {% for menu in config.extra.juice_extra_menu %} {{ menu.title }} {% endfor %} {% endif %} {% for page in root.pages %} {% if lang == "en" %} {{ page.title }} {% else %} {{ page.title }} {% endif %} {% endfor %} {% for path in root.subsections %} {% set child = get_section(path=path) %} {% if lang == "en"%} {{ child.title }} {% else %} {{ child.title }} {% endif %} {% endfor %} {% if lang == "en"%} {% else %} {% endif %} {% endmacro render_header %}