{% extends "base.html" %} {% load static i18n wagtailcore_tags wagtailimages_tags %} {% block title %}{{ page.specific.title }} | {% trans "Blog" %}{% endblock title %} {% block body_class %}template-blog{% endblock body_class %} {% block content %}

{{ page.specific.title }}

{{ page.specific.author }}
{{ page.first_published_at|date:"F j, Y | H:i" }}
{% if page.specific.image %}
{% image page.specific.image original class="w-full max-h-100 object-contain rounded-lg" %}
{% endif %}
{% for block in page.body %} {% if block.block_type == 'heading' %}

{{ block.value }}

{% else %}
{% include_block block %}
{% endif %} {% endfor %}
{% endblock content %}