diff --git a/shared/templates/base.html.old b/shared/templates/base.html.old
deleted file mode 100644
index 757854e..0000000
--- a/shared/templates/base.html.old
+++ /dev/null
@@ -1,75 +0,0 @@
-{% extends "base_html.html" %}
-{% load staticfiles %}
-
-{% block title %}Qwann{% block sub_title %}{% endblock %}{% endblock %}
-
-{% block navbar %}
-
- {% if user.is_authenticated %}
-
-
-
-
- {% else %}
-
-
- {% endif %}
-{% endblock %}
-
-{% block main_container %}
-
-
-
- {% if messages %}
- {% for message in messages %}
-
-
-
- {% if message.level == DEFAULT_MESSAGE_LEVELS.DEBUG %}DEBUG : {% endif %}
- {% if message.level == DEFAULT_MESSAGE_LEVELS.INFO %}Info : {% endif %}
- {% if message.level == DEFAULT_MESSAGE_LEVELS.SUCCESS %}Ayé ! {% endif %}
- {% if message.level == DEFAULT_MESSAGE_LEVELS.WARNING %}Ooops ! {% endif %}
- {% if message.level == DEFAULT_MESSAGE_LEVELS.ERROR %}Attention ! {% endif %}
-
- {{ message }}
-
- {% endfor %}
- {% endif %}
- {% block content %}{% endblock %}
-
-
-
-
-{% endblock %}
-
-{% block foot %}
-
-{% endblock %}
-
-{% block foot_copyrights %}
- La totalité du contenu de ce site est sous licence libre CC0. Plus d'infos.
-{% endblock %}
diff --git a/shared/templates/base_html.html.old b/shared/templates/base_html.html.old
deleted file mode 100644
index 10c3633..0000000
--- a/shared/templates/base_html.html.old
+++ /dev/null
@@ -1,71 +0,0 @@
-{% load staticfiles %}
-
-
-
-
-
- {% block title %}{% endblock %}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {% block extra_head %}{% endblock %}
-
-
-
-
- {% block main_container %}{% endblock %}
-
-
- {% block extra_script %}{% endblock %}
-
-
-
diff --git a/shared/templates/home.html b/shared/templates/home.html
new file mode 100644
index 0000000..ec425b7
--- /dev/null
+++ b/shared/templates/home.html
@@ -0,0 +1,11 @@
+{% extends "base.html" %}
+
+{% block page_title %}Acceuil{% endblock %}
+
+{% block content %}
+ Bonjours, je suis une maison
+ {% lorem 3 p %}
+ Looool
+ {% lorem 3 p %}
+{% endblock %}
+