<!doctype html>
<html class="left-sidebar-panel sidebar-light js flexbox flexboxlegacy no-touch csstransforms csstransforms3d no-overflowscrolling webkit chrome win js no-mobile-device custom-scroll" style>
<head>
<meta charset="UTF-8">
<title>{% block title %}{% endblock %} </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800|Shadows+Into+Light" rel="stylesheet" type="text/css">
{{ encore_entry_link_tags('app') }}
<link href="https://cdn.datatables.net/buttons/2.4.2/css/buttons.dataTables.min.css" rel="stylesheet"/>
{% block stylesheets %}
{% endblock %}
</head>
<body>
<section class="body">
{% include 'Global/header.html.twig' %}
<div class="inner-wrapper">
{% include 'Global/sidebar.html.twig' %}
<section role="main" class="content-body">
{% block navigation %}
{% endblock %}
{% for type, notifications in app.flashes %}
{% for notification in notifications %}
{% include "Global/alert.html.twig" with {text: notification, type: type, notAdmissible: true} %}
{% endfor %}
{% endfor %}
{% block content %}
{% endblock %}
</section>
</div>
</section>
{{ encore_entry_script_tags('app') }}
<script src="https://cdn.datatables.net/buttons/2.4.2/js/dataTables.buttons.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.10.1/jszip.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/pdfmake.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/vfs_fonts.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/vfs_fonts.js"></script>
<script src="https://cdn.datatables.net/buttons/2.4.2/js/buttons.html5.min.js"></script>
<script src="https://cdn.datatables.net/buttons/2.4.2/js/buttons.print.min.js"></script>
{% block script %}
{% endblock %}
</body>
</html>