{% extends "base.html" %} {% load wagtailcore_tags image_filters i18n static %} {% block content %} {{ page.title }} {{ page.intro }} {% trans "All" %} {% for tag in blog_tags %} {{ tag.tag }} {% endfor %} {% for post in blog_pages %} {% with post=post.specific %} {% with post.main_image as main_image %} {% if main_image %} {% responsive_image main_image ratio=1.5 %} {% else %} {% endif %} {{ post.title }} {% endwith %} {% if post.intro %}{{ post.intro }}{% else %}{% endif %} {% trans "Read more..." %} {% endwith %} {% endfor %} {% endblock %}
{% if post.intro %}{{ post.intro }}{% else %}{% endif %}
{% trans "Read more..." %}