diff --git a/recipes.html b/recipes.html
index 2741fea..94c17ad 100644
--- a/recipes.html
+++ b/recipes.html
@@ -7,7 +7,7 @@
-Cocktails
+Recipes
Old Fashioned
diff --git a/templates/menu.html b/templates/menu.html
index 23d994e..a4d775d 100644
--- a/templates/menu.html
+++ b/templates/menu.html
@@ -2,7 +2,7 @@
{% block title %}Cocktail Menu{% endblock %}
{% block bodyclass %}menu{% endblock %}
{% block content %}
-Cocktails
+{% block header %}Cocktails{% endblock %}
{% for bev in bevs %}
{% for name, details in bev.items() %}
{{ name }}
diff --git a/templates/recipes.html b/templates/recipes.html
index 63f69fa..58d178d 100644
--- a/templates/recipes.html
+++ b/templates/recipes.html
@@ -1,5 +1,6 @@
{% extends "menu.html" %}
{% block bodyclass %}recipes{% endblock %}
+{% block header %}Recipes{% endblock %}
{% block amount %}{{ amount }} {% endblock %}
{% block directions %}
Directions