diff --git a/templates/meal_list.html b/templates/meal_list.html
new file mode 100644
index 0000000..2cfeb86
--- /dev/null
+++ b/templates/meal_list.html
@@ -0,0 +1,55 @@
+
+
+
+ Meal List - KUKAPP
+
+
+
+
+
+
+
+
+
+
Leaderboard
+
+ {% for person in leaderboard %}
+
+
+
{{ person.name }}
+
{{ person.score }}
+
+ {% endfor %}
+
+
+
+
+
{{meals[0].date}}
+ {% for meal in meals %}
+ {% if loop.index != 1 and (meal.date != meals[loop.index - 2].date) %}
+
{{meal.date}}
+ {% endif %}
+
+
{{meal.date}}
+
+ {% endfor%}
+
+
+
+
+
{{current_user_name}}
+
LOGOUT
+
+
+
+
+
\ No newline at end of file