{% extends "base.html" %} {% load wagtailcore_tags wagtailimages_tags %} {% block body_class %}template-blogpage{% endblock %} {% block content %}

{{ page.title }}

{% with authors=page.authors.all %} {% if authors %}

Posted by:

{% endif %} {% endwith %}
{{ page.intro }}
{{ page.body }}
{% for item in page.gallery_images.all %}
{% image item.image fill-320x240 %}

{{ item.caption }}

{% endfor %}
{% with tags=page.tags.all %} {% if tags %}

Tags

    {% for tag in tags %}
  • 🏷️ {{ tag }}
  • {% endfor %}
{% endif %} {% endwith %}
{% endblock %}