{% 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') }}

{% include "user/_read_posts_nav.html" -%} {% if posts %}
{% for post in posts.items -%} {% include 'post/_post_teaser.html' %} {% endfor -%}
{% else %}

{{ _('No posts yet.') }}

{% endif -%}
{% endblock %}