From 108850cd4bdbff5c655c334f5b51bebf4f866639 Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Wed, 4 Sep 2019 23:55:36 +0200 Subject: [PATCH] Fix the tag page order --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index b88df4e..f51f0b1 100644 --- a/app.py +++ b/app.py @@ -912,7 +912,7 @@ def tags(tag): **by_visibility(ap.Visibility.PUBLIC), **not_deleted(), } - ), + ).sort("meta.published", -1), ) ) _log_sig()