From 3830e6f8377409f238f9c598d850bd8e70fb211e Mon Sep 17 00:00:00 2001 From: Aevann Date: Wed, 14 Feb 2024 10:36:55 +0200 Subject: [PATCH] fix empty ghostbox --- files/templates/post_listing.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/templates/post_listing.html b/files/templates/post_listing.html index 10fc61abc4..d257c9b793 100644 --- a/files/templates/post_listing.html +++ b/files/templates/post_listing.html @@ -237,7 +237,7 @@ {% set text = "@" ~ u.username ~ " hasn't made any posts yet!" %} {% endif %} {% else %} - {% set text = "No posts found!" if request.path.startswith('/search') else "" %} + {% set text = "No posts found!" if request.path.startswith('/search') else "There are no posts here (yet)." %} {% endif %} {{macros.ghost_box(text, '', 1)}}