Changed header on Recipes page
This commit is contained in:
parent
66f457a59f
commit
75e97b9d4a
@ -7,7 +7,7 @@
|
|||||||
<body class="recipes">
|
<body class="recipes">
|
||||||
<main>
|
<main>
|
||||||
|
|
||||||
<h1>Cocktails</h1>
|
<h1>Recipes</h1>
|
||||||
|
|
||||||
|
|
||||||
<h2>Old Fashioned</h2>
|
<h2>Old Fashioned</h2>
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
{% block title %}Cocktail Menu{% endblock %}
|
{% block title %}Cocktail Menu{% endblock %}
|
||||||
{% block bodyclass %}menu{% endblock %}
|
{% block bodyclass %}menu{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1>Cocktails</h1>
|
<h1>{% block header %}Cocktails{% endblock %}</h1>
|
||||||
{% for bev in bevs %}
|
{% for bev in bevs %}
|
||||||
{% for name, details in bev.items() %}
|
{% for name, details in bev.items() %}
|
||||||
<h2>{{ name }}</h2>
|
<h2>{{ name }}</h2>
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
{% extends "menu.html" %}
|
{% extends "menu.html" %}
|
||||||
{% block bodyclass %}recipes{% endblock %}
|
{% block bodyclass %}recipes{% endblock %}
|
||||||
|
{% block header %}Recipes{% endblock %}
|
||||||
{% block amount %}{{ amount }} {% endblock %}
|
{% block amount %}{{ amount }} {% endblock %}
|
||||||
{% block directions %}
|
{% block directions %}
|
||||||
<h3>Directions</h3>
|
<h3>Directions</h3>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user