bread_page.html 356 B

123456789101112131415
  1. {% extends "base.html" %}
  2. {% load wagtailimages_tags %}
  3. {% block content-header %}
  4. <h1>{{ page.title }}</h1>
  5. <figure>
  6. {% image self.image fill-600x600 %}
  7. </figure>
  8. {% endblock content-header %}
  9. {% block content-body %}
  10. <p>{{ page.origin }}</p>
  11. <p>{{ page.bread_type }}</p>
  12. {{ page.description }}
  13. {% endblock content-body %}