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

{{ post.title() }}

{% if not post.meta('nocomments') %} {{ comments.comment_link(post.permalink(), post.base_path) }} {% endif %}
{{ arusahni.html_tags(post) }}
{% if index_teasers %} {{ post.text(teaser_only=True) }} {% else %} {{ post.text(teaser_only=False) }} {% endif %}
{% endfor %} {{ helper.html_pager() }} {{ comments.comment_link_script() }} {% endblock %}