<!DOCTYPE html><html lang="it"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1"><link rel="icon" href="{{ asset('assets/image/LogoGap.ico') }}" type="image/x-icon"/><title> {% block title %}GAP{% endblock %} </title><!-- BOOTSTRAP --><link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.5/dist/css/bootstrap.min.css" rel="stylesheet"><!-- DATATABLES --><link rel="stylesheet" href="https://cdn.datatables.net/1.13.8/css/dataTables.bootstrap5.min.css"><!-- JQUERY UI --><link rel="stylesheet" href="https://code.jquery.com/ui/1.13.3/themes/base/jquery-ui.css"><!-- FONT AWESOME --><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"><!-- CSS CUSTOM --><link href="{{ asset('assets/css/main.css') }}" rel="stylesheet">{% block stylesheets %}{% endblock %}</head><body><!-- MENU -->{{ include('shared/menuTop.html.twig') }}<!-- FLASH --><div class="container-fluid mt-3">{% for flashMessage in app.session.flashbag.get('error') %}<div class="alert alert-danger alert-dismissible fade show">{{ flashMessage }}<button type="button" class="btn-close" data-bs-dismiss="alert"></button></div>{% endfor %}{% for flashMessage in app.session.flashbag.get('success') %}<div class="alert alert-success alert-dismissible fade show">{{ flashMessage }}<button type="button" class="btn-close" data-bs-dismiss="alert"></button></div>{% endfor %}</div><!-- CONTENUTO FULL WIDTH --><div class="w-body">{% block body %}{% endblock %}</div><!-- JQUERY --><script src="https://code.jquery.com/jquery-3.7.1.min.js"></script><!-- JQUERY UI --><script src="https://code.jquery.com/ui/1.13.3/jquery-ui.min.js"></script><!-- BOOTSTRAP --><script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.5/dist/js/bootstrap.bundle.min.js"></script><!-- DATATABLES --><script src="https://cdn.datatables.net/1.13.8/js/jquery.dataTables.min.js"></script><script src="https://cdn.datatables.net/1.13.8/js/dataTables.bootstrap5.min.js"></script><!-- MOMENT --><script src="{{ asset('assets/js/moment.min.js') }}"></script><!-- JS CUSTOM --><script src="{{ asset('assets/js/main.js') }}"></script>{% block javascripts %}{% endblock %}</body></html>