From 8ed9222f71f6548c23fff2d35ef9a89b3354c6a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Madar=C3=A1sz?= Date: Thu, 12 Jan 2023 15:48:54 +0000 Subject: [PATCH] improve footer --- app/templates/layout.html | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/app/templates/layout.html b/app/templates/layout.html index 2fd2d4b..d3dab14 100644 --- a/app/templates/layout.html +++ b/app/templates/layout.html @@ -54,13 +54,14 @@ {% if custom_footer %} {{ custom_footer | safe }} {% else %} - Runs a modified version of microblog.pub. Admin. + Admin. {% if is_admin %} - {{ header_link("followers", "Followers") }} {{ followers_count }}. - {% endif %} - {% if is_admin %} - {{ header_link("following", "Following") }} {{ following_count }}. + {{ header_link("followers", "Followers") }} {{ followers_count }}. + {{ header_link("following", "Following") }} {{ following_count }}. {% endif %} +
+ Runs a modified version of microblog.pub. Supports ActivityPub! +
{% endif %}