{% 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_class %}home{% endblock %} {% block banner %}
 feature image
{% endblock %} {% block body %}
{{ bag('annonce', this.alt, 'message') }} {{ bag('annonce', this.alt, 'description') }} {{ bag('annonce', this.alt, 'readmore') }}

Blog

{% for child in this.pagination.items %} {% if child._data._model == "posts" %} {% for blogpost in child.pagination.items %}

{{ blogpost.title }}

{{ blogpost.excerpt|truncate(140) }}

{% endfor %} {% endif %} {% endfor %}
{% endblock %}