aboutsummaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2024-10-19 17:56:17 +0200
committerdefault <nobody@localhost>2024-10-19 17:56:17 +0200
commitcb3bb90dfcdb8af5edbb1648e8506346588d6ec6 (patch)
treeb431516d005c32229545883f3d5dc9e8e8284ccc /html.c
parente1df0d0d57c61df222a3d8d2eb02e82578b6fb3f (diff)
Tweaked HTML for the timeline pages.
Diffstat (limited to 'html.c')
-rw-r--r--html.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/html.c b/html.c
index 11a600a..49be160 100644
--- a/html.c
+++ b/html.c
@@ -2259,13 +2259,6 @@ xs_str *html_timeline(snac *user, const xs_list *list, int read_only,
}
}
- if (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")));
@@ -2273,6 +2266,13 @@ xs_str *html_timeline(snac *user, const xs_list *list, int read_only,
xs_html *posts = xs_html_tag("div",
xs_html_attr("class", "snac-posts"));
+ if (title) {
+ xs_html_add(posts,
+ xs_html_tag("h2",
+ xs_html_attr("class", "snac-header"),
+ xs_html_text(title)));
+ }
+
xs_html_add(body,
posts);