-
{% for year in year_post_group %}
-
- {{ year.grouper }} {% trans 'year' %} +
-
+ {{ 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' %} +
-
+ {{ month.grouper }} {% trans 'month' %} {# 显示月份 #}
+
+ {# 显示该月份下的所有文章 #}
-
{% for article in month.list %}
-
- {{ article.title }} +
- + {{ article.title }} {# 文章链接 #} {% endfor %}
{% endfor %}
{% trans 'article archive' %}
+{% trans 'article archive' %}
{# 翻译:"文章归档" #}