From 16be679ecdf12f5324f8778e4e03d21a84d4144f Mon Sep 17 00:00:00 2001 From: default Date: Wed, 11 Jan 2023 21:51:42 +0100 Subject: [PATCH] Show the More... link above the 'About this site'. --- html.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html.c b/html.c index 4f3da63..089da03 100644 --- a/html.c +++ b/html.c @@ -886,8 +886,6 @@ d_char *html_timeline(snac *snac, char *list, int local, int skip, int show, int s = xs_str_cat(s, "\n"); } - s = html_user_footer(snac, s); - { xs *s1 = xs_fmt("\n", ftime() - t); s = xs_str_cat(s, s1); @@ -902,6 +900,8 @@ d_char *html_timeline(snac *snac, char *list, int local, int skip, int show, int s = xs_str_cat(s, s1); } + s = html_user_footer(snac, s); + s = xs_str_cat(s, "\n\n"); return s;