{% extends "base.html" %} {% load wagtailimages_tags i18n %} {% block content %}

{{ page.title }}

{% image page.image width-500 %}
{% if page.introduction %}

{{ page.introduction }}

{% endif %} {{ page.body }}
{% image page.image width-500 %}
    {% if page.origin %}
  • {% trans "Origin" %}

    {{ page.origin }}

  • {% endif %} {% if page.bread_type %}
  • {% trans "Type" %}

    {{ page.bread_type }}

  • {% endif %} {% with ingredients=page.ingredients.all %} {% if ingredients %}
  • {% trans "Ingredients" %}

      {% for ingredient in ingredients %}
    • {{ ingredient.name }}
    • {% endfor %}
  • {% endif %} {% endwith %}
{% endblock content %}