diff options
author | default <nobody@localhost> | 2023-11-27 21:14:27 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2023-11-27 21:14:27 +0100 |
commit | 800bb0123df6abb20e5b06f739ba3917ba3a0b86 (patch) | |
tree | d6d73dbda472cfd0945602ea4f369b1b50adaf9c | |
parent | a20e8b8cd5c15e5e89696540d306e5f0bab4f174 (diff) |
Minor html_entry() tweaks.
-rw-r--r-- | html.c | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -500,6 +500,7 @@ xs_html *html_instance_body(char *tag) static xs_str *html_instance_header(xs_str *s, char *tag) +/* TO BE REPLACED BY html_instance_body() */ { xs_html *head = html_instance_head(); @@ -1249,14 +1250,6 @@ xs_str *html_entry(snac *user, xs_str *os, const xs_dict *msg, int local, if (level >= 256) return os; - xs *s = xs_str_new("<div>\n"); - - { - xs *s1 = xs_fmt("<a name=\"%s_entry\"></a>\n", md5); - - s = xs_str_cat(s, s1); - } - if (strcmp(type, "Follow") == 0) { xs_html *h = xs_html_tag("div", xs_html_attr("class", "snac-post"), @@ -1292,6 +1285,14 @@ xs_str *html_entry(snac *user, xs_str *os, const xs_dict *msg, int local, && !valid_status(actor_get(actor, NULL))) return os; + xs *s = xs_str_new("<div>\n"); + + { + xs *s1 = xs_fmt("<a name=\"%s_entry\"></a>\n", md5); + + s = xs_str_cat(s, s1); + } + if (level == 0) s = xs_str_cat(s, "<div class=\"snac-post\">\n"); /** **/ else |