Initial commit.

This commit is contained in:
2020-01-11 10:33:58 +01:00
commit afcec9769e
542 changed files with 151530 additions and 0 deletions

18
templates/base.html Normal file
View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
{% block header %}
<meta charset="utf-8" />
<title>
{% block title %}
Titre par défaut
{% endblock %}
</title>
{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
{% block footer %}{% endblock %}
</body>
</html>

9
templates/home.html Normal file
View File

@@ -0,0 +1,9 @@
{% extends "base.html" %}
{% block title %}
Accueil
{% endblock %}
{% block body %}
{{ message }}
{% endblock %}