diff --git a/templates/home.html b/templates/home.html index a7678c3..da45a02 100644 --- a/templates/home.html +++ b/templates/home.html @@ -11,52 +11,5 @@ {% endblock %} {% block content %} -{% if MALT_HOME is defined %} - {% for section in MALT_HOME %} -
-
-
- {% if 'title' in section %} -

{{ section['title'] }}

- {% 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 'buttons' in item %} -
- {% for button in item['buttons'] %} - {{ button['text'] }} - {% endfor %} -
- {% endif %} -
-
- {% endfor %} -
- {% endif %} -
-
-
- {% endfor %} -{% endif %} +{{ page.content }} {% endblock %}