bread_page.html 282 B

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