diff --git a/src/humulus/static/favicon.ico b/src/humulus/static/favicon.ico
new file mode 100644
index 0000000..bf4e066
Binary files /dev/null and b/src/humulus/static/favicon.ico differ
diff --git a/src/humulus/templates/_base.html b/src/humulus/templates/_base.html
index 13e61ef..8e94dff 100644
--- a/src/humulus/templates/_base.html
+++ b/src/humulus/templates/_base.html
@@ -23,6 +23,9 @@
+
+
+
{% block title %}{% endblock %} - Humulus
@@ -33,6 +36,11 @@
+
-
Login
diff --git a/src/humulus/templates/recipes/create.html b/src/humulus/templates/recipes/create.html
index 417288e..691c43f 100644
--- a/src/humulus/templates/recipes/create.html
+++ b/src/humulus/templates/recipes/create.html
@@ -21,4 +21,5 @@
{% block body %}
Create a new recipe
{{ render_recipe_form(form, url_for('recipes.create'), 'Create recipe') }}
+Back to recipe list
{% endblock %}
diff --git a/src/humulus/templates/recipes/index.html b/src/humulus/templates/recipes/index.html
index 544a8d2..7d61f3a 100644
--- a/src/humulus/templates/recipes/index.html
+++ b/src/humulus/templates/recipes/index.html
@@ -21,6 +21,10 @@
{% block body %}
Recipes
+
+
@@ -53,4 +57,5 @@
{% endfor %}
+
{% endblock %}
diff --git a/src/humulus/templates/recipes/info.html b/src/humulus/templates/recipes/info.html
index 646ebd1..01b7c36 100644
--- a/src/humulus/templates/recipes/info.html
+++ b/src/humulus/templates/recipes/info.html
@@ -144,7 +144,7 @@
Buttons to do things
-#}
{{ render_delete_modal(url_for('recipes.delete', id=recipe._id), 'deleteRecipe', recipe.name) }}
diff --git a/src/humulus/templates/recipes/update.html b/src/humulus/templates/recipes/update.html
index ac4b53a..aea95bc 100644
--- a/src/humulus/templates/recipes/update.html
+++ b/src/humulus/templates/recipes/update.html
@@ -21,4 +21,5 @@
{% block body %}
{{ form.name.data }}
{{ render_recipe_form(form, url_for('recipes.update', id=id, rev=rev), 'Update recipe') }}
+Cancel
{% endblock %}