From: Raphaël Gertz Date: Thu, 29 Feb 2024 14:43:16 +0000 (+0100) Subject: Merge body in base template X-Git-Tag: 0.3.0~19 X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/f412b0a14a7d4f39289a9638ebd280d9e407a2bc Merge body in base template --- diff --git a/Resources/views/base.html.twig b/Resources/views/base.html.twig index 0b2f1e9..d5e373b 100644 --- a/Resources/views/base.html.twig +++ b/Resources/views/base.html.twig @@ -1,12 +1,164 @@ - - {% block metas %}{% endblock %} - {% block title %}Welcome!{% endblock %} - {% block stylesheets %}{% endblock %} + + {% block meta %}{% endblock %} + {% block title %}{{ [title.page, title.section, title.site]|filter(v => v)|join(' - ') }}{% endblock %} + {# block title %}{{ [site.title, section, title]|filter(v => v)|join(' - ') }}{% endblock #} + {##} + {% block stylesheet %} + + {% if description is defined and description %} + + {% endif %} + {% if keywords is defined and keywords %} + + {% endif %} + {% if icon is defined and icon %} + + + {% for size, icon in icon.png %} + {# Apple #} + {% if size in [120, 152, 167, 180] %} + {% if size == 180 %} + + {% endif %} + + {# Windows #} + {% elseif size in [70, 150, 310] %} + + {# Others #} + {% else %} + + {% endif %} + {% endfor %} + {% endif %} + {# stylesheet '//fonts.googleapis.com/css?family=Irish+Grover' '//fonts.googleapis.com/css?family=La+Belle+Aurore' '@RapsysAirBundle/Resources/public/css/{reset,screen}.css' #} + {% stopwatch 'stylesheet' %} + {% stylesheet '@rapsys_air_bundle/css/{reset,droidsans,lemon,notoemoji,screen}.css' %} + + {% endstylesheet %} + {% endstopwatch %} + {% if canonical is defined and canonical %} + + {% endif %} + {% if alternates is defined and alternates %} + {% for lang, alternate in alternates %} + + {% endfor %} + {% endif %} + {% if facebook is defined and facebook %} + {% for property, contents in facebook %} + {% if contents is iterable %} + {% for content in contents %} + + {% endfor %} + {% else %} + + {% endif %} + {% endfor %} + {% endif %} + {% endblock %} - {% block body %}{% endblock %} - {% block javascripts %}{% endblock %} + {% block body %} + {% block header %} + + {% endblock %} + {% block message %} + {# pass an array argument to get the messages of those types (['warning', 'error']) #} + {% for label, messages in app.flashes %} + {% if messages %} +
+
    + {% for message in messages %} +
  • {{ message }}
  • + {% endfor %} +
+
+ {% endif %} + {% endfor %} + {% endblock %} + {# + {% block sidebar %}{% endblock %} + #} + {% block content %} +
+
+

{% trans %}Outdoor space reservation system{% endtrans %}

+
+
+ {% endblock %} + {% block footer %} + + {% endblock %} + {% endblock %} + {% block javascript %} + {% stopwatch 'javascript' %} + {#{% javascript '@RapsysAir/js/*.js' %} + + {% endjavascript %}#} + {% endstopwatch %} + {% endblock %}