kpsul/kfet/templates/kfet/base.html
Aurélien Delobelle 49fdaa6824 Minor changes
- Création d'un template pour nav
- Modification des liens entre les pages account
- Correction de la balise form dans account_update.html
- Ajout d'un nom pour la résolution inversée de account
2016-08-03 06:33:27 +02:00

21 lines
542 B
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>{% block title %}{% endblock %} | K-Fêt - ENS Ulm</title>
{% block extra_head %}{% endblock %}
{# Vieux IE pas comprendre HTML5 #}
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
{% include "kfet/base_nav.html" %}
<section id="content">
{% block content %}TGTG{% endblock %}
</section>
{% include "kfet/base_footer.html" %}
</body>
</html>