mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-15 01:55:03 +00:00
In the people page, followers and following lists are foldable.
This commit is contained in:
parent
755d997fb1
commit
2218889b43
1 changed files with 6 additions and 2 deletions
8
html.c
8
html.c
|
@ -1982,8 +1982,12 @@ xs_html *html_people_list(snac *snac, xs_list *list, char *header, char *t)
|
||||||
xs_html_tag("h2",
|
xs_html_tag("h2",
|
||||||
xs_html_attr("class", "snac-header"),
|
xs_html_attr("class", "snac-header"),
|
||||||
xs_html_text(header)),
|
xs_html_text(header)),
|
||||||
snac_posts = xs_html_tag("div",
|
snac_posts = xs_html_tag("details",
|
||||||
xs_html_attr("class", "snac-posts")));
|
xs_html_attr("open", NULL),
|
||||||
|
xs_html_tag("summary",
|
||||||
|
xs_html_text("...")),
|
||||||
|
xs_html_tag("div",
|
||||||
|
xs_html_attr("class", "snac-posts"))));
|
||||||
|
|
||||||
xs_list *p = list;
|
xs_list *p = list;
|
||||||
char *actor_id;
|
char *actor_id;
|
||||||
|
|
Loading…
Reference in a new issue