-
- {% for year in year_post_group %}
-
- {{ year.grouper }} {% trans 'year' %}
- {% regroup year.list by pub_time.month as month_post_group %}
-
-
- {% for month in month_post_group %}
-
- {{ month.grouper }} {% trans 'month' %}
-
-
- {% for article in month.list %}
-
- {{ article.title }}
+ {# 条目内容 #} + + {% regroup article_list by pub_time.year as year_post_group %} {# 按年份分组文章 #} +
- {# 年份列表 #}
+ {% for year in year_post_group %} {# 遍历年份组 #}
+
- {{ year.grouper }} {% trans 'year' %} {# 显示年份 #}
+ {% regroup year.list by pub_time.month as month_post_group %} {# 按月份分组 #}
+
- {# 月份列表 #}
+ {% for month in month_post_group %} {# 遍历月份组 #}
+
- {{ month.grouper }} {% trans 'month' %} {# 显示月份 #}
+
- {# 文章列表 #}
+ {% for article in month.list %} {# 遍历文章 #}
+
- {{ article.title }} {# 文章链接 #} {% endfor %}
- {{ month.grouper }} {% trans 'month' %} {# 显示月份 #}
+
- {{ year.grouper }} {% trans 'year' %} {# 显示年份 #}
+ {% regroup year.list by pub_time.month as month_post_group %} {# 按月份分组 #}
+
- {{ article.title }}
+
- {{ month.grouper }} {% trans 'month' %}
-
{% trans 'article archive' %}
+{% trans 'article archive' %}
{# 归档标题 #}