mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-15 01:55:03 +00:00
Added a 'title' to each list timeline.
This commit is contained in:
parent
a727bb29f6
commit
f631fc5ed2
1 changed files with 4 additions and 1 deletions
5
html.c
5
html.c
|
@ -2072,14 +2072,17 @@ xs_str *html_timeline(snac *user, const xs_list *list, int read_only,
|
||||||
xs_html_add(body, lol);
|
xs_html_add(body, lol);
|
||||||
|
|
||||||
while (xs_list_next(lists, &v, &ct)) {
|
while (xs_list_next(lists, &v, &ct)) {
|
||||||
|
const char *lname = xs_list_get(v, 1);
|
||||||
xs *url = xs_fmt("%s/list/%s", user->actor, xs_list_get(v, 0));
|
xs *url = xs_fmt("%s/list/%s", user->actor, xs_list_get(v, 0));
|
||||||
|
xs *ttl = xs_fmt(L("Timeline for list '%s'"), lname);
|
||||||
|
|
||||||
xs_html_add(lol,
|
xs_html_add(lol,
|
||||||
xs_html_tag("li",
|
xs_html_tag("li",
|
||||||
xs_html_tag("a",
|
xs_html_tag("a",
|
||||||
xs_html_attr("href", url),
|
xs_html_attr("href", url),
|
||||||
xs_html_attr("class", "snac-list-link"),
|
xs_html_attr("class", "snac-list-link"),
|
||||||
xs_html_text(xs_list_get(v, 1)))));
|
xs_html_attr("title", ttl),
|
||||||
|
xs_html_text(lname))));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue