From: Raphaƫl Gertz Date: Mon, 28 Dec 2020 08:19:21 +0000 (+0100) Subject: Cleanup structure X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/f789b4873defd304b17f3d0d0061feec639733c0 Cleanup structure --- diff --git a/Resources/views/default/index.html.twig b/Resources/views/default/index.html.twig index d8ce55c..662d1ea 100644 --- a/Resources/views/default/index.html.twig +++ b/Resources/views/default/index.html.twig @@ -1,47 +1,45 @@ {% extends '@RapsysAir/body.html.twig' %} {% block content %} -
-

{{ section }}

-
- {% if calendar is defined and calendar %} -
- {% for date, day in calendar %} -
-

{{ day.title }}

- {% if day.sessions is not empty %} -
    - {% for session in day.sessions %} -
  • - {{ session.title }} - - {% if session.weather is defined and session.weather %}{{ session.weather }}{% endif %} - {{ session.slot }} - -
  • - {% endfor %} -
- {% else %} -   - {% endif %} -
- {% endfor %} -
- {% endif %} - {{ include('@RapsysAir/form/_toolbox.html.twig') }} -
- {% if locations is defined and locations %} -
-
-

{% trans %}Locations{% endtrans %}

+
+

{{ section }}

+
+ {% if calendar is defined and calendar %}
- {% for id, title in locations %} -
-

{{ title }}

+ {% for date, day in calendar %} +
+

{{ day.title }}

+ {% if day.sessions is not empty %} +
    + {% for session in day.sessions %} +
  • + {{ session.title }} + + {% if session.weather is defined and session.weather %}{{ session.weather }}{% endif %} + {{ session.slot }} + +
  • + {% endfor %} +
+ {% else %} +   + {% endif %}
{% endfor %}
-
+ {% endif %} + {{ include('@RapsysAir/form/_toolbox.html.twig') }}
+
+ {% if locations is defined and locations %} +
+

{% trans %}Locations{% endtrans %}

+
+ {% for id, title in locations %} +
+

{{ title }}

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