{% macro render_header() %} {% set root_section = get_section(path="_index.md") %} {% set active_section = "" %} {% if page and page.components %} {% set active_section = page.components[0] %} {% elif section and section.components %} {% set active_section = section.components[0] %} {% endif %} {{ config.extra.juice_logo_name }} {% for subpath in root_section.subsections %} {% set sub = get_section(path=subpath) %} {% set is_active = sub.components[0] == active_section %} {% if not 'hide_from_menu' in sub.extra or not sub.extra.hide_from_menu %} {{ sub.title }} {% endif %} {% endfor %} {% if config.extra.juice_extra_menu %} {% for menu in config.extra.juice_extra_menu %} {{ menu.title }} {% endfor %} {% endif %} {% endmacro render_header %}