{% for menu in navigations %} {% if menu.show %}
  • {{ menu.title }} {% if menu.children %}
      {% for child in menu.children %} {% if child.show %}
    • {{ child.title }}
    • {% endif %} {% endfor %}
    {% endif %}
  • {% endif %} {% endfor %}