{% include "brand.html" %}
    {% include "utility.html" %}
    {% for item in first_level_menu() %}
  • {{item.text}} {% if item.children %}
      {% for sub in second_level_menu() %}
    • {{sub.text}}
    • {% endfor %}
    {% endif %}
  • {% endfor %}