{% extends "base.html" %} {% block styles %} {{ super() }} {% endblock %} {% block navbar %} {% include "includes/navbar.html" %} {% endblock %} {% block content %} {% if MALT_HOME is defined %} {% for section in MALT_HOME %}
{% if 'title' in section %}

{{ section['title'] }}

{% endif %} {% if section.get('text') %}

{{ section['text'] }}

{% endif %} {% if 'items' in section %}
{% for item in section['items'] %}
{% if 'icon' in item %}

{% endif %} {% if 'title' in item %}
{{ item['title'] }}
{% endif %} {% if 'text' in item %}

{{ item['text'] }}

{% endif %} {% if 'action' in item %} {% endif %}
{% endfor %}
{% endif %}
{% endfor %} {% endif %} {% endblock %}