{% extends "base.html" %} {% block page_title %} {% if recipe.url %} {{ recipe.name }} {% else %} {{ recipe.name }} {% endif %} {% endblock %} {% block content %}

{% if recipe.yield_ %} Yield: {{ recipe.yield_ }}
{% endif %} {% if recipe.author %} Author: {{ recipe.author }}
{% endif %} {% if recipe.source %} Source: {{ recipe.source }}
{% endif %}

{% for ingredient_block in recipe.ingredient_blocks %}

{{ ingredient_block.heading() }}

{% for ingredient in ingredient_block %} {{ ingredient.__unicode__() }} {% endfor %}
{% endfor %}

Directions

{% for paragraph in recipe.directions.wrapped_paragraphs() %}

{{ paragraph }}

{% endfor %}
{% endblock %}