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

{{ page.title }}

{{ page.introduction}}

{% for bread in breads %}

{{ bread.title }}

    {% if bread.origin %}
  • {% trans "Origin" %} {{ bread.origin }}
  • {% endif %} {% if bread.bread_type %}
  • {% trans "Type" %} {{ bread.bread_type }}
  • {% endif %}
{% endfor %}
{% if breads.paginator.count > 1 %}
{% include "includes/pagination.html" with subpages=breads %}
{% endif %} {% endblock content %}