diff --git a/home/templates/activites.html b/home/templates/activites.html
new file mode 100644
index 0000000000000000000000000000000000000000..fec4c949548071137f0b6bb3bb525e9688109d94
--- /dev/null
+++ b/home/templates/activites.html
@@ -0,0 +1,8 @@
+{% extends "base.html" %}
+
+{% block "content" %}
+	<h2>Activités</h2>
+	<p>
+	TODO : liste des activités, planning et infos si vous voulez proposez une activité
+	</p>
+{% endblock %}
\ No newline at end of file
diff --git a/home/templates/faq.html b/home/templates/faq.html
new file mode 100644
index 0000000000000000000000000000000000000000..8b3fb67169971f1622aa3b1e2b27f06fdc6ad670
--- /dev/null
+++ b/home/templates/faq.html
@@ -0,0 +1,12 @@
+{% extends "base.html" %}
+
+{% block "content" %}
+	<h2>Une question ?</h2>
+	<p>Une réponse</p>
+
+	<h2>Une question ?</h2>
+	<p>Une réponse</p>
+
+	<h2>Une question ?</h2>
+	<p>Une réponse</p>
+{% endblock %}
\ No newline at end of file
diff --git a/home/urls.py b/home/urls.py
index e647928fb423b60ecd6651f884d4cc4a8bb6a7f8..160733f7112f75bea5550f5556a3c5a0de432771 100644
--- a/home/urls.py
+++ b/home/urls.py
@@ -4,4 +4,6 @@ from . import views
 urlpatterns = [
 	path('', views.static_view, {"slug":"home"}, name = 'home'),
 	path('inscription/', views.static_view, {"slug":"inscription"}, name = 'inscription'),
+	path('activites/', views.static_view, {"slug":"activites"}, name = 'activites'),
+	path('faq/', views.static_view, {"slug":"faq"}, name = 'FAQ'),
 ]
\ No newline at end of file