Fixed some indendation

This commit is contained in:
Justus Grunow 2025-01-26 10:50:52 -05:00
parent 6ff633e2f4
commit eefbf3c4b4

View File

@ -3,7 +3,7 @@
{% block bodyclass %}menu{% endblock %} {% block bodyclass %}menu{% endblock %}
{% block content %} {% block content %}
<h1>{% block header %}Cocktails{% endblock %}</h1> <h1>{% block header %}Cocktails{% endblock %}</h1>
{% for name, details in bevs.items() %} {% for name, details in bevs.items() %}
<h2>{{ name }}</h2> <h2>{{ name }}</h2>
<ul> <ul>
{% for name, amount in details['ingredients'].items() %} {% for name, amount in details['ingredients'].items() %}
@ -11,5 +11,5 @@
{% endfor %} {% endfor %}
</ul> </ul>
{% block directions scoped %}{% endblock %} {% block directions scoped %}{% endblock %}
{% endfor %} {% endfor %}
{% endblock %} {% endblock %}