templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="de">
  3.     <head>
  4.         <title>{% block title %}{% endblock %}</title>
  5.         <meta charset="UTF-8"/>
  6.         <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
  7.         <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  8.         
  9.         {% block additional_header_data %}{% endblock %}
  10.         <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}"/>
  11.         <link rel="stylesheet" href="{{ asset('css/normalize.css') }}"/>
  12.         <link rel="stylesheet" href="{{ asset('css/grid.css') }}"/>
  13.         <link rel="stylesheet" href="{{ asset('css/font-awesome.min.css') }}"/>
  14.         <link rel="stylesheet" href="{{ asset('css/style_dark.css') }}"/>
  15.         <base href="{{ base }}">
  16.         {% if app.environment == 'dev' %}
  17.             <link rel="stylesheet" href="{{ asset('css/dev.css') }}"/>
  18.         {% endif %}
  19.         {% block stylesheets %}{% endblock %}
  20.     </head>
  21.     <body>
  22.         <div class="wrapper buchung">
  23.             <header id="header" class="sticky">
  24.                 <div class="row">
  25.                     <div id="logo" class="col-3">
  26.                         <a href="{{ path('home') }}"><img src="https://www.redato.de/web/web0039/res/templates/images/logo.svg" alt="Logo" /></a>
  27.                     </div>
  28.                     {% if not app.user %}
  29.                         <div class="col-9 hide-mobile">
  30.                             <a href="{{ path('register') }}" class="button" style="float: right">{{ 'customer.register'|trans }}</a>
  31.                             <a href="{{ path('login') }}" class="button" style="float: right; margin-right: 10px;">{{ 'security.login'|trans }}</a>
  32.                         </div>
  33.                     {% endif %}
  34.                     {% block customer %}{% endblock %}
  35.                 </div>
  36.             </header>
  37.             <div class="main">
  38.                 {% block main %}{% endblock %}
  39.             </div>
  40.             <div id="copyright">
  41.                 <p>Copyright © by Gericke &amp; Co. GmbH - Alle Rechte vorbehalten. <a href="https://www.gericke-spedition.de/impressum.html" target="_blank">Impressum</a> | <a href="https://www.gericke-spedition.de/datenschutz.html" target="_blank">Datenschutz</a></p>
  42.             </div>
  43.         </div>
  44.         {% block javascripts %}
  45.             <script src="{{ asset('js/dist/polyfill.min.js') }}"></script>
  46.             <script src="{{ asset('js/dist/axios.min.js') }}"></script>
  47.             {% if app.environment == 'dev' %}
  48.                 <script src="{{ asset('js/common.js') }}"></script>
  49.             {% else %}
  50.                 <script src="{{ asset('js/dist/common.min.js') }}"></script>
  51.             {% endif %}
  52.         {% endblock %}
  53.     </body>
  54. </html>