{% 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 %} {% if recipe.tags %} Tags: {{ ', '.join(tag_links) }}
{% endif %}

{% if recipe.tags %}
{% endif %} {% if recipe.ingredient_blocks %}
{% for ingredient_block in recipe.ingredient_blocks %}

{{ ingredient_block.heading() }}

{% for ingredient in ingredient_block %} {% endfor %}
{{ ingredient.__unicode__() }}
{% endfor %}
{% endif %} {% if recipe.directions %}

Directions

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

{{ paragraph }}

{% endfor %}
{% endif %} {% endblock %}