diff --git a/website/blog/models.py b/website/blog/models.py index 77cdcd4..e4f23a8 100644 --- a/website/blog/models.py +++ b/website/blog/models.py @@ -32,7 +32,8 @@ class BlogPostListPage(BaseListingPage): post_month=TruncMonth("date", output_field=models.DateField()) ) .values_list("post_month", flat=True) - } + }, + reverse=True, ) return [TocEntry(post_month, post_month, 0, []) for post_month in post_months]