+{% endmacro %}
diff --git a/src/humulus/templates/recipes/create.html b/src/humulus/templates/recipes/create.html
index 691c43f..0d074dd 100644
--- a/src/humulus/templates/recipes/create.html
+++ b/src/humulus/templates/recipes/create.html
@@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-#}
-{% from "recipes/_macros.html" import render_recipe_form %}
+{% from "recipes/_macros.html" import render_recipe_form, render_footer %}
{% extends '_base.html' %}
{% block title %}Create Recipe{% endblock %}
@@ -21,5 +21,13 @@
{% block body %}
Create a new recipe
{{ render_recipe_form(form, url_for('recipes.create'), 'Create recipe') }}
-Back to recipe list
+
+{% endblock %}
+
+{% block footer %}
+{{ render_footer() }}
{% endblock %}
diff --git a/src/humulus/templates/recipes/update.html b/src/humulus/templates/recipes/update.html
index aea95bc..3995ea8 100644
--- a/src/humulus/templates/recipes/update.html
+++ b/src/humulus/templates/recipes/update.html
@@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-#}
-{% from "recipes/_macros.html" import render_recipe_form %}
+{% from "recipes/_macros.html" import render_recipe_form, render_footer %}
{% extends '_base.html' %}
{% block title %}Update | {{ form.name.data }}{% endblock %}
@@ -21,5 +21,13 @@
{% block body %}