summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2024-01-28 11:18:14 +0100
committerdefault <nobody@localhost>2024-01-28 11:18:14 +0100
commitd839654ccbea5c9d9f9b01d9669a48bf6e42b56f (patch)
tree85cbcc059bae7bb362140bf2e9c35bcc7ea650a3 /html.c
parent5c8992de0c254487b95ae4e794f2ed1d94b372b2 (diff)
Moved the favicon link out of the CSS loop.
Diffstat (limited to 'html.c')
-rw-r--r--html.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/html.c b/html.c
index 4edf720..de2c60e 100644
--- a/html.c
+++ b/html.c
@@ -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;
}