diff --git a/prosopopee/templates/base.html b/prosopopee/templates/base.html
new file mode 100644
index 0000000..06cef16
--- /dev/null
+++ b/prosopopee/templates/base.html
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+ {% block css %}
+ {% endblock %}
+
+
+
+ {{ settings.title }}
+
+
+
+
+
+
+
+ {% block content %}
+ {% endblock %}
+
+
+
+
diff --git a/prosopopee/templates/index.html b/prosopopee/templates/index.html
index 5d13d7f..a94247e 100644
--- a/prosopopee/templates/index.html
+++ b/prosopopee/templates/index.html
@@ -1,53 +1,26 @@
-
-
-
-
-
-
+{% extends "base.html" %}
-
-
- {{ settings.title }}
-
-
-
-
-
-
-
+
+
+
-
-
-
+
+{% endblock %}