diff options
author | default <nobody@localhost> | 2024-01-28 11:18:14 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2024-01-28 11:18:14 +0100 |
commit | d839654ccbea5c9d9f9b01d9669a48bf6e42b56f (patch) | |
tree | 85cbcc059bae7bb362140bf2e9c35bcc7ea650a3 /html.c | |
parent | 5c8992de0c254487b95ae4e794f2ed1d94b372b2 (diff) |
Moved the favicon link out of the CSS loop.
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -438,13 +438,14 @@ static xs_html *html_base_head(void) xs_html_attr("rel", "stylesheet"), xs_html_attr("type", "text/css"), xs_html_attr("href", v))); - xs_html_add(head, - xs_html_sctag("link", - xs_html_attr("rel", "icon"), - xs_html_attr("type", "image/x-icon"), - xs_html_attr("href", f))); } + xs_html_add(head, + xs_html_sctag("link", + xs_html_attr("rel", "icon"), + xs_html_attr("type", "image/x-icon"), + xs_html_attr("href", f))); + return head; } |