templates/backend.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% if form is defined %}
  3.     {% form_theme form 'form/backend.html.twig' %}
  4. {% endif %}
  5. {% block stylesheets %}
  6.     {{ encore_entry_link_tags('main') }}
  7.     <link href="{{ asset('vendor/fontawesome/css/all.min.css') }}" media="all" rel="stylesheet" type="text/css">
  8.     <link rel="shortcut icon" href="{{ asset('img/favicon.png') }}">
  9. {% endblock %}
  10. {% block body %}
  11.     <body>
  12.         <div id="app">
  13.             {% block main %}
  14.                 {% include "includes/header.twig" %}
  15.                 <section class="section">
  16.                     <div class="container {%- if fullwidth is defined and fullwidth %} is-fluid{% endif %}">
  17.                         {% include "includes/notifications.twig" %}
  18.                         {% block content %}{% endblock %}
  19.                     </div>
  20.                 </section>
  21.             {% endblock %}
  22.             {% include "includes/footer.twig" %}
  23.         </div>
  24.         {% block scripts %}
  25.             <script>window.google_key = "{{ env('GMAPS_PUBLIC_KEY') }}";</script>
  26.             {{ encore_entry_script_tags('main') }}
  27.             {% if app.environment != 'dev' %}
  28.             <script src="//code.tidio.co/gmzifq5jn5r08airpsgcecd39bsgozoa.js" async></script>
  29.             <script>
  30.                 function chatShow() {
  31.                     window.tidioChatApi.show();
  32.                     window.tidioChatApi.open();
  33.                 }
  34.             </script>
  35.             {% endif %}
  36.         {% endblock %}
  37.     </body>
  38. {% endblock %}