<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- titre -->
<title>{{ page.titre }}</title>
<!-- description -->
<meta content="{{ page.description }}" name="description">
<!-- template headHtml -->
{{ page.template.headHtml|raw }}
{% block stylesheets %}{% endblock %}
</head>
{% if page.etat == 3 %}
<body style="border: 3px solid red; min-height: 100%;">
{% else %}
<!--
<body class="bd-example m-0 border-0 bd-example-row bd-example-row-flex-cols">
-->
<body class="">
{% endif %}
{% set trans_day_hash = {
"Monday": "Lundi : 8h - 16h30",
"Tuesday": "Mardi : 8h - 16h30",
"Wednesday": "Mercredi : 8h - 18h",
"Thursday": "Jeudi : 8h - 16h30",
"Friday": "Vendredi : 8h - 16h30",
"Saturday": "Samedi : fermé",
"Sunday": "Dimanche : fermé"
}
%}
{% block body %}{% endblock %}
<!-- script jsHtml -->
{{ page.template.jsHtml|raw }}
{% block javascripts %}
{% endblock %}
{% if user.roles[0] is defined and user.roles[0] == "ROLE_ADMIN" %}
{% include "front/js/elements.js" %}
{% include "front/js/gestionElements.js" %}
{% else %}
<script type="text/javascript">
$(function(){
$('.sf-toolbar').css("opacity", "0");
});
</script>
{% endif %}
</body>
</html>