From e8fa31defa98e99d9f6f2de198e14bededca49dc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Sun, 29 Nov 2020 07:18:23 +0100 Subject: [PATCH] Switch to tableless --- Resources/views/default/index.html.twig | 74 +++++++++++-------------- 1 file changed, 31 insertions(+), 43 deletions(-) diff --git a/Resources/views/default/index.html.twig b/Resources/views/default/index.html.twig index cd62920..89719d9 100644 --- a/Resources/views/default/index.html.twig +++ b/Resources/views/default/index.html.twig @@ -2,51 +2,39 @@ {% block content %}

{{ section }}

-
+
{% if calendar is defined and calendar %} - - - - {% for date, day in calendar %} - - {% if loop.index % 7 == 0 and not loop.last %} - - - {% endif %} - {% endfor %} - - -
-

{{ day.title }}

- {% if day.sessions is not empty %} - - {% endif %} -
+
+ {% for date, day in calendar %} +
+

{{ day.title }}

+ {% if day.sessions is not empty %} + + {% else %} +   + {% endif %} +
+ {% endfor %} +
{% endif %} {{ include('@RapsysAir/form/_toolbox.html.twig') }} -
-
- {% if locations is defined and locations %} - - - - {% for id, title in locations %} - - {% if loop.index % 7 == 0 and not loop.last %} - - - {% endif %} - {% endfor %} - - -
{{ title }}
- {% endif %} -
+ + {% if locations is defined and locations %} +
+
+ {% for id, title in locations %} +
+

{{ title }}

+
+ {% endfor %} +
+
+ {% endif %}
{% endblock %} -- 2.41.0