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

{{ page.title }}

{{ page.introduction}}

{% for bread in breads %}

{{ bread.title }}

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