commit 0f42fbf854d195b28616339e58e347e9cf42b409
parent 6a971af20c61c08429ce12993393b35ee9f85457
Author: default <nobody@localhost>
Date: Wed, 23 Oct 2024 09:43:38 +0200
More HTML tweaks.
Diffstat:
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/html.c b/html.c
@@ -2562,6 +2562,10 @@ xs_str *html_notifications(snac *user, int skip, int show)
xs_html *noti_new = NULL;
xs_html *noti_seen = NULL;
+ xs_html *posts = xs_html_tag("div",
+ xs_html_attr("name", "snac-posts"));
+ xs_html_add(body, posts);
+
xs_list *p = n_list;
const xs_str *v;
while (xs_list_iter(&p, &v)) {
@@ -2661,10 +2665,8 @@ xs_str *html_notifications(snac *user, int skip, int show)
xs_html_attr("class", "snac-header"),
xs_html_text(L("New"))));
- xs_html_add(body,
- xs_html_tag("div",
- xs_html_attr("class", "snac-posts"),
- noti_new));
+ xs_html_add(posts,
+ noti_new);
}
xs_html_add(noti_new,
@@ -2678,10 +2680,8 @@ xs_str *html_notifications(snac *user, int skip, int show)
xs_html_attr("class", "snac-header"),
xs_html_text(L("Already seen"))));
- xs_html_add(body,
- xs_html_tag("div",
- xs_html_attr("class", "snac-posts"),
- noti_seen));
+ xs_html_add(posts,
+ noti_seen);
}
xs_html_add(noti_seen,