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,13 +3,13 @@
{% 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() %}
<li>{% block amount scoped %}{% endblock %}{{ name }}</li> <li>{% block amount scoped %}{% endblock %}{{ name }}</li>
{% endfor %} {% endfor %}
</ul> </ul>
{% block directions scoped %}{% endblock %} {% block directions scoped %}{% endblock %}
{% endfor %} {% endfor %}
{% endblock %} {% endblock %}