{# -*- coding: utf-8 -*- #} {% import 'index_helper.tmpl' as helper with context %} {% import 'comments_helper.tmpl' as comments with context %} {% extends 'base.tmpl' %} {% block extra_head %} {{ super() }} {% if posts and (permalink == '/' or permalink == '/' + index_file) %} {% endif %} {% endblock %} {% block content %}
{% for post in posts %}

{{ post.title()|e }}


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