{% extends 'layout.html' %} {% block title %}Posts {{this_page_num}}{% endblock %} {% block content %} {% include 'postlist-pager.html' %}
{% for post in posts %}

{{post.title}}

{% if post.tags %} {% endif %} {% if post_type == 'full' %} {{post.target_text}} {% elif post_type == 'preview' %}
{{post.target_text}}
... {% else %} {{post.blurb}} Read more {% endif %} {% if sopt.disqus_shortname %}
Comments
{% endif %}
{% endfor %}
{% include 'postlist-pager.html' %} {% endblock %}