templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}Genève Ville Vivante{% endblock %}</title>
  6.         <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
  7.         {% block stylesheets %}
  8.             {{ encore_entry_link_tags('app') }}
  9.         {% endblock %}
  10.         {% block javascripts %}
  11.             {{ encore_entry_script_tags('app') }}
  12.         {% endblock %}
  13.     </head>
  14.     <body>
  15.         {{ include('partials/header/_header.html.twig') }}
  16.         <main role="main">
  17.             {% if headerBanner is defined and headerBanner is not null %}
  18.                 {{ component('header-banner', { title: headerBanner.title, imageUrl: headerBanner.imageUrl }) }}
  19.             {% endif %}
  20.             {% block body %}
  21.             {% endblock %}
  22.         </main>
  23.         {{ include('partials/footer/_footer.html.twig') }}
  24.     </body>
  25. </html>