templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1">
  6.     <meta name="author" content="Univers Solutions">
  7.     <title>{% block title %}ELIOS{% endblock %}</title>
  8.     {#    <link rel="icon" href="{{ asset(get_param('APP_LOGO')) }}"> #}
  9.     {% include 'layout/header.favicon.thml.twig' %}
  10.     {% include "layout/styles/styles.html.twig" %}
  11. {#    <link href="https://cdn.jsdelivr.net/npm/select2@4.0.13/dist/css/select2.min.css" rel="stylesheet" />#}
  12. {#        <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/select2-bootstrap-5-theme@1.3.0/dist/select2-bootstrap-5-theme.min.css" />#}
  13.     {{ encore_entry_link_tags('app') }}
  14.     {% block stylesheets %}{% endblock %}
  15.     <style>
  16.         :root {
  17.         {% for value in get_param('BS_COLORS') %}
  18.             {{ value.name }}: {{ value.color }};
  19.             {{ value.name }}-rgb: {{ hex_to_rgb(value.color) }};
  20.         {% endfor %}
  21.         }
  22.         .text-yelow{
  23.             color: #FFC300;
  24.         }
  25.         @keyframes blink {
  26.             0%, 100% { opacity: 1; }
  27.             50% { opacity: 0; }
  28.         }
  29.         .loading-dots span {
  30.             animation-name: blink;
  31.             animation-duration: 1.4s;
  32.             animation-iteration-count: infinite;
  33.             animation-fill-mode: both;
  34.         }
  35.         .loading-dots span:nth-child(1) { animation-delay: 0s; }
  36.         .loading-dots span:nth-child(2) { animation-delay: 0.2s; }
  37.         .loading-dots span:nth-child(3) { animation-delay: 0.4s; }
  38.     </style>
  39. </head>
  40. <body>
  41. {% block body %}{% endblock %}
  42. {% include "layout/scripts/script.html.twig" %}
  43. {{ encore_entry_script_tags('app') }}
  44. {% block javascripts %}{% endblock %}
  45. </body>
  46. </html>