summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
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)
438 xs_html_attr("rel", "stylesheet"), 438 xs_html_attr("rel", "stylesheet"),
439 xs_html_attr("type", "text/css"), 439 xs_html_attr("type", "text/css"),
440 xs_html_attr("href", v))); 440 xs_html_attr("href", v)));
441 xs_html_add(head,
442 xs_html_sctag("link",
443 xs_html_attr("rel", "icon"),
444 xs_html_attr("type", "image/x-icon"),
445 xs_html_attr("href", f)));
446 } 441 }
447 442
443 xs_html_add(head,
444 xs_html_sctag("link",
445 xs_html_attr("rel", "icon"),
446 xs_html_attr("type", "image/x-icon"),
447 xs_html_attr("href", f)));
448
448 return head; 449 return head;
449} 450}
450 451