Initial commit.
This commit is contained in:
18
templates/base.html
Normal file
18
templates/base.html
Normal 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
9
templates/home.html
Normal file
@@ -0,0 +1,9 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}
|
||||
Accueil
|
||||
{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
{{ message }}
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user