commit 2ee74c9a6a33414d03004f4576ad5fece28239a1
parent 4af95579dcdd8b6cb35f72a47f35c820f3d9d388
Author: default <nobody@localhost>
Date: Mon, 24 Jul 2023 20:51:24 +0200
Added a 'Back to top' link at the end of the page.
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/html.c b/html.c
@@ -1425,8 +1425,12 @@ xs_str *html_timeline(snac *snac, const xs_list *list, int local, int skip, int
if (show_more) {
xs *s1 = xs_fmt(
"<p>"
+ "<a href=\"%s%s\" name=\"snac-more\">%s</a> - "
"<a href=\"%s%s?skip=%d&show=%d\" name=\"snac-more\">%s</a>"
- "</p>\n", snac->actor, local ? "" : "/admin", skip + show, show, L("Load more..."));
+ "</p>\n",
+ snac->actor, local ? "" : "/admin", L("Back to top"),
+ snac->actor, local ? "" : "/admin", skip + show, show, L("Older entries...")
+ );
s = xs_str_cat(s, s1);
}