diff --git a/djangoshaker/templates/djangoshaker/index.html b/djangoshaker/templates/djangoshaker/index.html
new file mode 100644
--- /dev/null
+++ b/djangoshaker/templates/djangoshaker/index.html
@@ -0,0 +1,48 @@
+{% extends "djangoshaker/template.html" %}
+
+{% load djangoshaker_html_helpers %}
+
+{% block title %}Django Shaker{% endblock %}
+
+{% block header_title %}Django Shaker{% endblock %}
+
+{% block content %}
+
+{% if recipes_added %}
+
Recently added recipes
+
+ {% for recipe in recipes_added %}
+ - {% html_link 'recipe' recipe.name recipe.id "listing_link" %}
+ {% endfor %}
+
+{% endif %}
+
+{% if recipes_modified %}
+Recently modified recipes
+
+ {% for recipe in recipes_modified %}
+ - {% html_link 'recipe' recipe.name recipe.id "listing_link" %}
+ {% endfor %}
+
+{% endif %}
+
+{% if brands_added %}
+Recently added brands
+
+ {% for brand in brands_added %}
+ - {% html_link 'brand' brand.name brand.id "listing_link" %}
+ {% endfor %}
+
+{% endif %}
+
+{% if brands_modified %}
+Recently modified brands
+
+ {% for brand in brands_modified %}
+ - {% html_link 'brand' brand.name brand.id "listing_link" %}
+ {% endfor %}
+
+{% endif %}
+
+{% endblock %}
+