Changed header on Recipes page

This commit is contained in:
Justus Grunow 2025-01-25 22:48:28 -05:00
parent 66f457a59f
commit 75e97b9d4a
3 changed files with 3 additions and 2 deletions

View File

@ -7,7 +7,7 @@
<body class="recipes">
<main>
<h1>Cocktails</h1>
<h1>Recipes</h1>
<h2>Old Fashioned</h2>

View File

@ -2,7 +2,7 @@
{% block title %}Cocktail Menu{% endblock %}
{% block bodyclass %}menu{% endblock %}
{% block content %}
<h1>Cocktails</h1>
<h1>{% block header %}Cocktails{% endblock %}</h1>
{% for bev in bevs %}
{% for name, details in bev.items() %}
<h2>{{ name }}</h2>

View File

@ -1,5 +1,6 @@
{% extends "menu.html" %}
{% block bodyclass %}recipes{% endblock %}
{% block header %}Recipes{% endblock %}
{% block amount %}{{ amount }} {% endblock %}
{% block directions %}
<h3>Directions</h3>