{% extends 'base.html' %} {% block content %} {% for post in posts[(p-1)*config.post_per_page:p*config.post_per_page] %}

{{ post.title }} {{ post.date }}

{% if config.excerpt_index and post.has_excerpt %} {{ post.excerpt }} {% else %} {{ post.content }} {% end %} {% for tag in post.tags %} {{ tag }} {% end %}
{% end %}
{% end %}