{% extends "blog/base.html" %} {% block breadcrumb %} {% endblock %} {% block content %} {% for post in page_obj %}
{% if post.is_top %} 置顶 {% endif %} {% if post.cover_image %}
{{ post.title }}
{% endif %}

{{ post.title }}

{{ post.author.get_full_name|default:post.author.username }} {{ post.published_at|date:"Y-m-d" }} {% if post.category %} {{ post.category.name }} {% endif %} 阅读 {{ post.views }} 约 {{ post.get_reading_time }} 分钟

{{ post.get_summary }}

{% for tag in post.tags.all %} {{ tag.name }} {% endfor %}
阅读全文 →
{% empty %}

暂无文章

{% endfor %} {% if page_obj.has_other_pages %} {% endif %} {% endblock %}