templates/base.html.twig line 1
{# Base des templates #}{# Contient le header et le footer du site #}<!DOCTYPE html><html><head><meta charset="UTF-8"><title>{% block title %}A2MI | Gestion contrats{% endblock %}</title><link rel="icon" type="image/x-icon" href="{{ asset('img/favicon.png') }}">{% block stylesheets %}<link href="{{ asset('css/reset.css') }}" rel="stylesheet"/><link href="{{ asset('css/mobile.css') }}" rel="stylesheet"/><link href="{{ asset('css/ecranlarge.css') }}" rel="stylesheet"/>{% endblock %}</head><header><a href="{{ path('app_login') }}"><img id="logo_a2mi_header" src="{{ asset('img/logo_header.png') }}" alt="a2mi_header" height="" width=""></a></header>{# Les templates sont appelés ici #}<body>{% block body %}{% endblock %}</body><footer><p>Copyright © 2023 - <a href="https://a2mi-info.com/">A2MI Informatique</a></p><br><p>Tous droits réservés</p></footer>{% block javascripts %}<script src="{{ asset('js/password.js') }}"></script>{% endblock %}</html>