From b319f19b6d3c18353349b11b12fb4ad64e1733fc Mon Sep 17 00:00:00 2001 From: TeejMcSteez Date: Sun, 2 Nov 2025 00:09:03 -0400 Subject: [PATCH] Update general template to include favicon link --- hscontrol/templates/general.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hscontrol/templates/general.go b/hscontrol/templates/general.go index 3728b736..6e2af390 100644 --- a/hscontrol/templates/general.go +++ b/hscontrol/templates/general.go @@ -49,6 +49,10 @@ func HtmlStructure(head, body *elem.Element) *elem.Element { attrs.Name: "viewport", attrs.Content: "width=device-width, initial-scale=1.0", }), + elem.Link(attrs.Props{ + attrs.Rel: "icon", + attrs.Href: "/favicon.ico", + }), head, ), body,