From 0851c2247e04f3d31deac35f8a89b144cba1a7bc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Thu, 29 Feb 2024 14:51:15 +0100 Subject: [PATCH] Remove body template --- Resources/views/body.html.twig | 158 --------------------------------- 1 file changed, 158 deletions(-) delete mode 100644 Resources/views/body.html.twig diff --git a/Resources/views/body.html.twig b/Resources/views/body.html.twig deleted file mode 100644 index 10630ff..0000000 --- a/Resources/views/body.html.twig +++ /dev/null @@ -1,158 +0,0 @@ -{% extends '@RapsysAir/base.html.twig' %} -{% block metas %} - -{% endblock %} -{% block stylesheets %} - - {% if description is defined and description %} - - {% endif %} - {% if keywords is defined and keywords %} - - {% endif %} - {% if site is defined and site %} - - - {% for size, icon in site.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['metas'] is defined and facebook['metas'] %} - {% for property, contents in facebook['metas'] %} - {% if contents is iterable %} - {% for content in contents %} - - {% endfor %} - {% else %} - - {% endif %} - {% endfor %} - {% endif %} -{% endblock %} -{% block javascripts %} - {% stopwatch 'javascript' %} - {#{% javascript '@RapsysAir/js/*.js' %} - - {% endjavascript %}#} - {% endstopwatch %} -{% endblock %} -{% block title %}{{ [site.title, section, title]|filter(v => v)|join(' - ') }}{% 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 %} -
- -
- {% endif %} - {% endfor %} - {% endblock %} -{# - {% block sidebar %}{% endblock %} -#} - {% block content %} -
-
-

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

-
-
- {% endblock %} - {% block footer %} - - {% endblock %} -{% endblock %} -- 2.41.0