{# -*- coding: utf-8 -*- #} {% import 'index_helper.tmpl' as helper with context %} {% import 'comments_helper.tmpl' as comments with context %} {% extends 'base.tmpl' %} {% block content %}
{% for post in posts %}

{{ post.title() }}

{% if index_teasers %}
{{ post.text(teaser_only=True) }} {% else %}
{{ post.text(teaser_only=False) }} {% endif %}
{% endfor %}
{{ helper.html_pager() }} {{ comments.comment_link_script() }} {% endblock %}