{% extends "_layout" %} {% block main %}

{{ entry.title }}

{{ entry.recipeTagline }}

Brew Snapshot

{% for block in entry.recipeContents %} {% if block.type == 'recipeImage' %} {% set image = block.image.first() %}
{{ image.title }} {% if block.imageCaption %}

{{ block.imageCaption }}

{% endif %}
{% endif %} {% if block.type == 'recipeCopy' %} {{ block.bodyContent }} {% endif %} {% if block.type == 'recipeIngredients' %} {% for row in block.ingredients %} {% endfor %}
Amount Ingredient
{{ row.amount }} {{ row.ingredient }}
{% endif %} {% if block.type == 'recipeSteps' %}

{{ block.stepsTitle }}

    {% for step in block.stepsSteps %}
  1. {{ step.stepInstructions }}
  2. {% endfor %}
{% endif %} {% if block.type == 'recipeTip' %}

{{ block.tipContent }}

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