{% load static %}<!DOCTYPE html> <html lang="fr"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>{% block title %}{% endblock %}celcatsanitizer</title> <link rel="stylesheet" href="{% static "celcatsanitizer/style.css" %}"> </head> <body> <header> <h1><a href="{% url "index" %}">celcatsanitizer</a></h1> </header> <div class="content"> {% block body %} <h3>Choisissez votre année</h3> <ul> {% for year in years %} <li><a href="{% url "mentions" year.slug %}">{{ year }}</a></li> {% empty %} <p><em>Aucun emploi du temps à afficher</em></p> {% endfor %} </ul> {% endblock %} </div> <footer> <p>(c) 2017 – Alban Gruin – <a href="{% url "contact" %}">contacter<br /> Design inspiré par <a href="https://bestmotherfucking.website/">https://bestmotherfucking.website/</a></p> </footer> </body> </html>