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 %}{% endblock %} - Wettbewerb Hauptstadt des Fairen Handels</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.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  8.         {% block stylesheets %}
  9.             {{ encore_entry_link_tags('app') }}
  10.         {% endblock %}
  11.         {% block javascripts %}
  12.             <script src="{{ asset('tinymce/tinymce.js') }}"></script>
  13.             {{ encore_entry_script_tags('app') }}
  14.         {% endblock %}
  15.     </head>
  16.     <body id="top" class="fullwidth">
  17.         <div id="wrapper" class="wrapper">
  18.             {% include('header/header.html.twig') %}
  19.             <div id="container" class="main-container">
  20.                 <main id="main" class="main">
  21.                     <div class="inside">
  22.                         {% block body %}
  23.                         {% endblock %}
  24.                     </div>
  25.                 </main>
  26.             </div>
  27.             {% include('footer/footer.html.twig') %}
  28.         </div>
  29.     </body>
  30. </html>