- {% if page_type and tag_name %}
-
+{% block content %} {# 主要内容块 #}
+
{# 主要内容区域 #}
+
{% endblock %}
-{% block sidebar %}
- {% load_sidebar user linktype %}
+{% block sidebar %} {# 侧边栏块 #}
+ {% load_sidebar user linktype %} {# 加载侧边栏内容 #}
{% endblock %}
\ No newline at end of file
{# 内容区域 #}
+ {% if page_type and tag_name %} {# 如果存在页面类型和标签名称 #}
+ {# 归档页眉 #}
-
{% endif %}
- {% for article in article_list %}
- {% load_article_detail article True user %}
+ {% for article in article_list %} {# 遍历文章列表 #}
+ {% load_article_detail article True user %} {# 加载文章详情 #}
{% endfor %}
- {% if is_paginated %}
- {% load_pagination_info page_obj page_type tag_name %}
+ {% if is_paginated %} {# 如果启用了分页 #}
+ {% load_pagination_info page_obj page_type tag_name %} {# 加载分页信息 #}
{% endif %}
{{ page_type }}:{{ tag_name }}
+{{ page_type }}:{{ tag_name }}
{# 归档标题 #}