From 75e97b9d4a56ebe20ef64ccb4913af993dc92453 Mon Sep 17 00:00:00 2001 From: Justus Grunow Date: Sat, 25 Jan 2025 22:48:28 -0500 Subject: [PATCH] Changed header on Recipes page --- recipes.html | 2 +- templates/menu.html | 2 +- templates/recipes.html | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) 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