{% block head_extra %}{% endblock %}
{% if show_nav %}
hello world
{% for item in nav_items %} {% if item.type == "link" %}
{{ item.label }}
{% elif item.type == "dropdown" and item.items %}
{{ item.label }}
{% for sub_item in item.items %}
{{ sub_item.label }}
{% endfor %}
{% endif %} {% endfor %}
☀
☾
◐
{% endif %}
{% block content %}{% endblock %}