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

{{ page.title }}

{{ page.intro|richtext }}
{% for post in blogpages %} {% with post=post.specific %}

{{ post.title }}

{{ post.intro }}

{% if post.main_image %}
{% with post.main_image as main_image %} {% if main_image %} {% image main_image width-1600 class="blog" %}{% endif %} {% endwith %}
{% endif %}
{% with tags=post.tags.all %} {% if tags %}

Tags

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