mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-14 17:45:04 +00:00
More HTML tweaks.
This commit is contained in:
parent
6a971af20c
commit
0f42fbf854
1 changed files with 8 additions and 8 deletions
16
html.c
16
html.c
|
@ -2562,6 +2562,10 @@ xs_str *html_notifications(snac *user, int skip, int show)
|
||||||
xs_html *noti_new = NULL;
|
xs_html *noti_new = NULL;
|
||||||
xs_html *noti_seen = 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;
|
xs_list *p = n_list;
|
||||||
const xs_str *v;
|
const xs_str *v;
|
||||||
while (xs_list_iter(&p, &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_attr("class", "snac-header"),
|
||||||
xs_html_text(L("New"))));
|
xs_html_text(L("New"))));
|
||||||
|
|
||||||
xs_html_add(body,
|
xs_html_add(posts,
|
||||||
xs_html_tag("div",
|
noti_new);
|
||||||
xs_html_attr("class", "snac-posts"),
|
|
||||||
noti_new));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
xs_html_add(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_attr("class", "snac-header"),
|
||||||
xs_html_text(L("Already seen"))));
|
xs_html_text(L("Already seen"))));
|
||||||
|
|
||||||
xs_html_add(body,
|
xs_html_add(posts,
|
||||||
xs_html_tag("div",
|
noti_seen);
|
||||||
xs_html_attr("class", "snac-posts"),
|
|
||||||
noti_seen));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
xs_html_add(noti_seen,
|
xs_html_add(noti_seen,
|
||||||
|
|
Loading…
Reference in a new issue