blog_page.html 449 B

123456789101112131415161718192021
  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. {% for tag in page.get_tags %}
  9. <a href="{{ tag.url }}">{{ tag }}</a>
  10. {% endfor %}
  11. <date>{{ page.date_published }}</date>
  12. {% for author in page.authors %}
  13. <li>{{ author }}</li>
  14. {% endfor %}
  15. {{ page.body }}
  16. {% endblock content %}