{% if theme.icons == 'awesome' %}
{% endif %}
{% block header %}
{% if project.logo %}
{% endif %}
{{ project.title }}
{% if project.main_menu %}
{% for item in project.main_menu %}
{{ icon(item.icon) }}{{ item.title }}
{% endfor %}
{% endif %}
{% endblock %}
{% block content %}{% endblock %}
{% for top in project.tree %}
{{ icon(top.icon) }}{{ top.title }}
{% if top.children %}
{% endif %}
{% if top.children %} {% for ch1 in top.children %}
{{ icon(ch1.icon) }}{{ ch1.title }}
{% if ch1.children %}
{% for ch2 in ch1.children %}
{{ ch2.title }}
{% endfor %}
{% endif %}
{% endfor %} {% endif %}
{% endfor %}