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="/images/favicon/favicon.ico" sizes="any">
  7.         <link rel="icon" href="/images/favicon/favicon.svg" type="image/svg+xml">
  8.         <link rel="apple-touch-icon" href="/images/favicon/apple-touch-icon.png">
  9.         <link rel="manifest" href="/images/favicon/manifest_1.webmanifest">
  10.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  11.         {% block stylesheets %}
  12.             {{ encore_entry_link_tags('app') }}
  13.         {% endblock %}
  14.         {% block javascripts %}
  15.             <script src="{{ asset('tinymce/tinymce.js') }}"></script>
  16.             {{ encore_entry_script_tags('app') }}
  17.         {% endblock %}
  18.     </head>
  19.     <body id="top" class="fullwidth">
  20.         <div id="wrapper" class="wrapper">
  21.             {% include('header/header.html.twig') %}
  22.             <div id="container" class="main-container">
  23.                 <main id="main" class="main">
  24.                     <div class="inside">
  25.                         {% block body %}
  26.                         {% endblock %}
  27.                     </div>
  28.                 </main>
  29.             </div>
  30.             {% include('footer/footer.html.twig') %}
  31.         </div>
  32.     </body>
  33. </html>