diff options
author | default <nobody@localhost> | 2023-06-29 18:10:59 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-06-29 18:10:59 +0200 |
commit | e64471b7e4985a6aeacc490773611ee8a82df084 (patch) | |
tree | 3fd8f3233b5369c50da72790ae4ac75fe14fe08b /html.c | |
parent | f4c7f4b9d79d8430e4d95c9c46a8ab402096d5a3 (diff) |
Added class snac-post-header to the people list.
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1313,10 +1313,12 @@ d_char *html_people_list(snac *snac, d_char *os, d_char *list, const char *heade xs *actor = NULL; if (valid_status(actor_get(snac, actor_id, &actor))) { - s = xs_str_cat(s, "<div class=\"snac-post\">\n"); + s = xs_str_cat(s, "<div class=\"snac-post\">\n<div class=\"snac-post-header\">\n"); s = html_actor_icon(s, actor, xs_dict_get(actor, "published"), NULL, NULL, 0); + s = xs_str_cat(s, "</div>\n"); + /* content (user bio) */ char *c = xs_dict_get(actor, "summary"); |