templates/system.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% if form is defined %}
  3.     {% form_theme form 'form/system.html.twig' %}
  4. {% endif %}
  5. {% block stylesheets %}
  6.     {{ encore_entry_link_tags('system') }}
  7.     <link href="{{ asset('vendor/fontawesome/css/all.min.css') }}" media="all" rel="stylesheet" type="text/css">
  8. {% endblock %}
  9. {% block body %}
  10.     <body>
  11.         <div id="app" ref="main">
  12.             {% block content %}
  13.                 <div class="container mb-2">
  14.                     <div class="has-text-centered">
  15.                         <img class="mt-5 mb-3" src="{{ asset('img/logo_webseite.png') }}">
  16.                     </div>
  17.                     {% include "includes/notifications.twig" %}
  18.                 </div>
  19.                 {% block main %}{% endblock %}
  20.                 <div class="footer has-text-centered has-background-white">
  21.                     &copy; Copyright Eventfix Deutschland<br>
  22.                     <a href="https://eventfix.de/datenschutz.html">Datenschutz</a> | <a href="https://eventfix.de/impressum.html">Impressum</a>
  23.                 </div>
  24.             {% endblock %}
  25.         </div>
  26.         {% block scripts %}
  27.             <script>window.google_key = "{{ env('GMAPS_PUBLIC_KEY') }}";</script>
  28.             {{ encore_entry_script_tags('system') }}
  29.         {% endblock %}
  30.     </body>
  31. {% endblock %}