templates/custom-base.html.twig line 1

  1. <!DOCTYPE html>
  2. <html >
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %} Eresh - Цифровой ассистент маркетолога {% endblock %}</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.             {{ include('layouts/styles.html.twig') }}
  10.         {% endblock %}
  11.     </head>
  12.     <body  class="ltr error-bg light-mode">
  13.         <!-- GLOBAL-LOADER -->
  14.         <div id="global-loader">
  15.             <img src="{{absolute_url(asset('build/images/loader.svg'))}}" class="loader-img" alt="Loader">
  16.         </div>
  17.         <!-- /GLOBAL-LOADER -->
  18.         <!-- PAGE -->
  19.         <div class="page">
  20.             <div class="main-content mt-0">
  21.                 <div class="main-container container">
  22.                     {% block body %}
  23.                     {% endblock %}
  24.                 </div>
  25.             </div>
  26.         </div>
  27.         {% block javascripts %}
  28.             {{ include('layouts/scripts.html.twig') }}
  29.         {% endblock %}
  30.     </body>
  31. </html>