{% extends "layout.html" %} {% block body %}
{% if pagination.prev == 0 %}

coding and writing, don't panic

统计: 所有文章: {{ site.posts | length }} ,总共写了: {{ site.word_count }} ,最近更新: {{ now_formatted }}

{% endif %} {% if pagination.prev == 0 %}

最近更新:

{% else %}

当前 {{ pagination.prev + 1 }},共 {{ pagination.total }} 页

{% endif %} {% for post in page_posts %}

{{ post.title }}

{% if post.excerpt %} {{ post.excerpt | safe }} {% else %} {{ post.content | strip_html | truncate_chars(length=150, omission=" ...... ") }} {% endif %}
{% endfor %} {% if pagination.total > 1 %} {% include "partials/pager.html" %} {% endif %}
{% endblock body %}