From 8f445f0da8443bb0396974b302dbad51c4305501 Mon Sep 17 00:00:00 2001 From: Magnun Leno Date: Wed, 12 Aug 2015 20:49:55 -0300 Subject: [PATCH] =?UTF-8?q?Remove=20utiliza=C3=A7=C3=A3o=20de=20dicionario?= =?UTF-8?q?s=20como=20parametriza=C3=A7=C3=A3o.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/home.html | 49 +-------------------------------------------- 1 file changed, 1 insertion(+), 48 deletions(-) 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 %}