{% if logo.enabled and logo.header %}
{% if logo.url %}
{% else %}
{{ logo.text }}
{% endif %}
{% endif %}
☰
{% for item in navigation %} {% if item.type == "link" %}
{{ item.title }}
{% elif item.type == "dropdown" %}
{{ item.title }}
{% for child in item.children %}
{{ child.title }}
{% endfor %}
{% endif %} {% endfor %}
{{ body | safe }}
{{ footer | safe }}