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

{% trans "Blog" %}

{% for post in posts %}
{% if post.blog_image %} {% image post.blog_image original alt=post.title class="w-full h-auto" %} {% endif %}

{{ post.title }}

{{ post.excerpt|truncatewords:20 }}

{% empty %}

{% trans "No blog posts yet." %}

{% endfor %}
{% endblock content %}