<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %} {{ 'checkins'|trans }}{% endblock %}</title>
<link rel="shortcut icon" href="{{ asset('favicon.ico') }}" type="image/x-icon">
<link rel="icon" href="{{ asset('favicon.ico') }}" type="image/x-icon">
{% block stylesheets %}
{{ encore_entry_link_tags('app_css') }}
{% endblock %}
</head>
<body class="principale">
{% if is_granted("ROLE_ADMIN") and app.request.attributes.get('_route') != 'app_login' %}
{% include('sidebar.html.twig') %}
{% endif %}
<p></p>
{% block titlePage %} {% endblock %}
{% include 'flashes.html.twig' %}
{% block body %}{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</body>
</html>