{% load wagtailcore_tags wagtailimages_tags wagtailmarkdown %}

{% if page.heading %} {{ page.heading }} {% else %} {{ page.title }} {% endif %}

{% if page.description %}

{{ page.description }}

{% endif %}
{% if page.image %}
{% image page.image original class="aspect-[4/3] w-full rounded-box object-cover" %}
{% endif %}

Latest posts

{% for post in posts %}
{% if post.image_url %} {{ post.title }} {% else %} {% endif %}

{{ post.title }}

{% if post.intro %}
{{ post.intro|markdown|truncatewords_html:30 }}
{% endif %}
{% if post.owner.wagtail_userprofile.avatar.url %} {{ post.author_name }} avatar {% endif %}

{{ post.author_name }}

{{ post.date }} {{ post.readtime }}

Read here {% if post.canonical_url %} Original post {% endif %}
{% empty %}

No posts published yet.

{% endfor %} {% if is_paginated %}
{% endif %}