templates/base.html.twig line 1
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}MyCy{% endblock %}</title>
<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>">
{# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
<style>
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');
</style>
<noscript><p><img src="//matomo.cyberscope.fr/matomo.php?idsite=2&rec=1" style="border:0;" alt="" /></p></noscript>
<!-- End Matomo Code -->
</head>
<body>
<div id="loader"></div>
<div class="header">
<button class="rounded-circle" id="backToTop"><i class="fa-solid fa-arrow-up fa-2x"></i></button>
<div class="progress-container" style="display:none;">
<div class="progress-bar" id="myBar"></div>
</div>
</div>
{% if is_granted('ROLE_USER') %}
{% include('history.html.twig') %}
{% include('navbar.html.twig') %}
<div class="container">
<div class="col-sm-12 bruce mt-3">
{% include('flash.html.twig') %}
</div>
</div>
<div class="container mt-1">
{% endif %}
{% block body %}{% endblock %}
{% if is_granted('ROLE_USER') %}
</div>
{% endif %}
</body>
</html>