{% extends 'base.html' %} {% block content %}

最新文章

{% for post in page_obj %}

{{ post.title }}

{{ post.author.username }} · {{ post.category|default:'未分类' }} · {{ post.created_at|date:'Y-m-d H:i' }}

{{ post.body|truncatechars:120 }}

{% for tag in post.tags.all %}#{{ tag.name }} {% endfor %}

{% empty %}

暂时没有符合条件的文章。

{% endfor %} {% include 'blog/pagination.html' %} {% endblock %}