{% extends "partials/header.html" %}
{% macro show_link(nav, page, title) -%}
{% if nav.title == page %}
{% endif %}
{% for c in nav.children %}
{{ show_link(c, page, title) }}
{% endfor %}
{%- endmacro %}
{% block site_name %}
{%- if config.extra.root_menu %}
{% for n in nav %}
{{ show_link(n, config.extra.root_menu.page, config.extra.root_menu.title) }}
{% endfor %}
{%- endif %}
{% if page %}
{% for parent in page.ancestors %}
{% endfor %}
{% endif %}
{{ page.title | default(config.site_name, true) }}
{% endblock %}