diff --git a/templates/blog/article_archives.html b/templates/blog/article_archives.html
index 42649a5..971e2c5 100644
--- a/templates/blog/article_archives.html
+++ b/templates/blog/article_archives.html
@@ -25,11 +25,11 @@
- {% regroup article_list by created_time.year as year_post_group %}
+ {% regroup article_list by pub_time.year as year_post_group %}
{% for year in year_post_group %}
- {{ year.grouper }} 年
- {% regroup year.list by created_time.month as month_post_group %}
+ {% regroup year.list by pub_time.month as month_post_group %}
{% for month in month_post_group %}
- {{ month.grouper }} 月
diff --git a/templates/blog/tags/article_meta_info.html b/templates/blog/tags/article_meta_info.html
index 4ea8173..c95c870 100644
--- a/templates/blog/tags/article_meta_info.html
+++ b/templates/blog/tags/article_meta_info.html
@@ -3,13 +3,13 @@
{% with article.id|add:user.is_authenticated as cachekey %}
{% cache 36000 metainfo cachekey %}
{% endcache %}
-{% endwith %}
\ No newline at end of file
+{% endwith %}