summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
Diffstat (limited to 'html.c')
-rw-r--r--html.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/html.c b/html.c
index dfd20e7..4f6ca19 100644
--- a/html.c
+++ b/html.c
@@ -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");