templates/base.html.twig line 1

  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}MyCy{% 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.             {{ encore_entry_link_tags('app') }}
  10.         {% endblock %}
  11.         {% block javascripts %}
  12.             {{ encore_entry_script_tags('app') }}
  13.         {% endblock %}
  14.         <style>
  15.             @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');
  16.         </style>
  17.         <noscript><p><img src="//matomo.cyberscope.fr/matomo.php?idsite=2&amp;rec=1" style="border:0;" alt="" /></p></noscript>
  18.         <!-- End Matomo Code -->
  19.     </head>
  20.     <body>
  21.     <div id="loader"></div>
  22.         <div class="header">
  23.             <button class="rounded-circle" id="backToTop"><i class="fa-solid fa-arrow-up fa-2x"></i></button>
  24.             <div class="progress-container" style="display:none;">
  25.                 <div class="progress-bar" id="myBar"></div>
  26.             </div>
  27.         </div>
  28.         {% if is_granted('ROLE_USER') %}
  29.             {% include('history.html.twig') %}
  30.             {% include('navbar.html.twig') %}
  31.             <div class="container">
  32.                 <div class="col-sm-12 bruce mt-3">
  33.                     {% include('flash.html.twig') %}
  34.                 </div>
  35.             </div>
  36.         <div class="container mt-1">
  37.         {% endif %}
  38.             {% block body %}{% endblock %}
  39.         {% if is_granted('ROLE_USER') %}
  40.         </div>
  41.         {% endif %}
  42.     </body>
  43. </html>