diff --git a/budget/templates/home.html b/budget/templates/home.html
index 21de4f1..c956ee3 100644
--- a/budget/templates/home.html
+++ b/budget/templates/home.html
@@ -1,21 +1,25 @@
{% extends "layout.html" %}
+{% block sidebar %}
+{% include "recent_projects.html" %}
+{% endblock %}
+
{% block content %}
Welcome on the budget manager
-
-
- {% include "recent_projects.html" %}
-
-
-
-
-
+
{% endblock %}
diff --git a/budget/templates/recent_projects.html b/budget/templates/recent_projects.html
index 9769c59..91e1dd6 100644
--- a/budget/templates/recent_projects.html
+++ b/budget/templates/recent_projects.html
@@ -1,5 +1,5 @@
{% if 'projects' in session %}
- Recently visited projects
+ Your projects
{% for id, name in session['projects'] %}
- {{ name }}