{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %} {% extends 'themes/' + theme() + '/base.html' %} {% else %} {% extends "base.html" %} {% endif %} {% set active_child = 'read_posts' %} {% block app_content %}

{{ _('Read posts') }}

{% for post in posts.items -%} {% include 'post/_post_teaser.html' %} {% endfor -%}
{% endblock %}