{% extends "base.html" %}
{% block scripts %}
{% endblock %}
{% block heading %} {{ single_recipe.title }} {%
endblock %} {% block content %}
Source
Ingredients📋
{% for ingredient in single_recipe.ingredients %}
- {{ ingredient }}
{% endfor %}
Instructions
{% if single_recipe.has_subsections %}
{% for instruction in single_recipe.instructions %}
{{ instruction.n }}
{% for i in instruction.i %}
- {{ i }}
{% endfor %}
{% endfor %}
{% else %}
{% for instruction in single_recipe.instructions %}
- {{ instruction }}
{% endfor %}
{% endif %}
{% endblock %}