{% extends "layout.html" %} {% from "macros/blog.html" import render_blog_post %} {% from "macros/pagination.html" import render_pagination %} {% block title %}{{ this.title }}{% endblock %} {% block body %} {% for child in this.pagination.items %}
{% set images = child.attachments.images|list %} {% if images %} {{child.title}} {% endif %}

{{ child.title }}

{{ child.body|striptags|truncate(140, end="...") }}

{% endfor %} {{ render_pagination(this.pagination) }} {% endblock %}