summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Paul Azim Hoberg <gyptazy@gyptazy.ch>2024-01-27 18:35:21 +0100
committerFlorian Paul Azim Hoberg <gyptazy@gyptazy.ch>2024-01-28 08:09:44 +0100
commitfe892622d33e45dd110abb8e6251b672ae1181d0 (patch)
tree0834b0ff130bda2fa0e1c1f433d9a475d4b1a439
parentd5c2c442b162da388ae3fa274b44ec676cbca2c4 (diff)
feature(favicon): Add favicon support (#107)
-rw-r--r--html.c9
-rw-r--r--utils.c1
2 files changed, 9 insertions, 1 deletions
diff --git a/html.c b/html.c
index 444a53d..4edf720 100644
--- a/html.c
+++ b/html.c
@@ -427,7 +427,9 @@ static xs_html *html_base_head(void)
xs_html_attr("name", "generator"),
xs_html_attr("content", USER_AGENT)));
- /* add server CSS */
+ /* add server CSS and favicon */
+ xs *f;
+ f = xs_fmt("%s/favicon.ico", srv_baseurl);
xs_list *p = xs_dict_get(srv_config, "cssurls");
char *v;
while (xs_list_iter(&p, &v)) {
@@ -436,6 +438,11 @@ 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)));
}
return head;
diff --git a/utils.c b/utils.c
index 9992205..0d02659 100644
--- a/utils.c
+++ b/utils.c
@@ -81,6 +81,7 @@ static const char *greeting_html =
"<!DOCTYPE html>\n"
"<html><head>\n"
"<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n"
+ "<link rel=\"icon\" type=\"image/x-icon\" href=\"https://%host%/favicon.ico\"/>\n"
"<title>Welcome to %host%</title>\n"
"<body style=\"margin: auto; max-width: 50em\">\n"
"%blurb%"