From d3cdbf170251db70121b2162513a6cfa2addd8c4 Mon Sep 17 00:00:00 2001 From: default Date: Tue, 7 May 2024 20:51:43 +0200 Subject: [PATCH] Added a title to list timelines. --- html.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/html.c b/html.c index bd3179d..86cb2f5 100644 --- a/html.c +++ b/html.c @@ -2034,6 +2034,13 @@ xs_str *html_timeline(snac *user, const xs_list *list, int read_only, xs_html_add(body, html_top_controls(user)); + if (user && title) { + xs_html_add(body, + xs_html_tag("h2", + xs_html_attr("class", "snac-header"), + xs_html_text(title))); + } + xs_html_add(body, xs_html_tag("a", xs_html_attr("name", "snac-posts"))); @@ -2666,9 +2673,11 @@ int html_get_handler(const xs_dict *req, const char *q_path, if (list != NULL) { xs *base = xs_fmt("/list/%s", lid); + xs *name = list_maint(&snac, lid, 3); + xs *title = xs_fmt(L("Showing timeline for list %s"), name); *body = html_timeline(&snac, list, 0, skip, show, - xs_list_len(next), NULL, base, 1); + xs_list_len(next), title, base, 1); *b_size = strlen(*body); status = 200; }