{% extends "layout.html" %} {% block body %}
{% for post in page_posts %}

{{ post.title }}

{% if post.excerpt %} {{ post.excerpt | safe }} {% elif loop.first and is_first_page %} {{ post.content | safe }} {% else %} {{ post.content | strip_html | truncate_chars(length=150, omission=" .....") }} {% endif %}
{% if loop.first and is_first_page %} 发表评论 {% else %} {{ theme.excerpt_link }} {% endif %}
{% endfor %} {% if pagination.total > 1 %} {% include "partials/pager.html" %} {% endif %}
{% endblock body %}