<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Univers Solutions">
<title>{% block title %}ELIOS{% endblock %}</title>
{# <link rel="icon" href="{{ asset(get_param('APP_LOGO')) }}"> #}
{% include 'layout/header.favicon.thml.twig' %}
{% include "layout/styles/styles.html.twig" %}
{# <link href="https://cdn.jsdelivr.net/npm/select2@4.0.13/dist/css/select2.min.css" rel="stylesheet" />#}
{# <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/select2-bootstrap-5-theme@1.3.0/dist/select2-bootstrap-5-theme.min.css" />#}
{{ encore_entry_link_tags('app') }}
{% block stylesheets %}{% endblock %}
<style>
:root {
{% for value in get_param('BS_COLORS') %}
{{ value.name }}: {{ value.color }};
{{ value.name }}-rgb: {{ hex_to_rgb(value.color) }};
{% endfor %}
}
.text-yelow{
color: #FFC300;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
.loading-dots span {
animation-name: blink;
animation-duration: 1.4s;
animation-iteration-count: infinite;
animation-fill-mode: both;
}
.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }
</style>
</head>
<body>
{% block body %}{% endblock %}
{% include "layout/scripts/script.html.twig" %}
{{ encore_entry_script_tags('app') }}
{% block javascripts %}{% endblock %}
</body>
</html>