From 4f5a1bfdc9d9365f6c89ee64a6a5133aeaee9f99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Sun, 9 Aug 2026 10:33:13 +0400 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=BF=D1=83=D1=82=D1=8C=20=D0=BA=20?= =?UTF-8?q?=D1=88=D0=B0=D0=B1=D0=BB=D0=BE=D0=BD=D1=83=20templates/index.ht?= =?UTF-8?q?ml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/handlers.go b/server/handlers.go index 39c7c26..9c00d22 100644 --- a/server/handlers.go +++ b/server/handlers.go @@ -66,7 +66,7 @@ func rootHandler(w http.ResponseWriter, r *http.Request) { return } w.Header().Set("Content-Type", "text/html; charset=utf-8") - tmpl, _ := templateFS.ReadFile("index.html") + tmpl, _ := templateFS.ReadFile("templates/index.html") html := strings.Replace(string(tmpl), "{{.Version}}", VERSION, 1) fmt.Fprint(w, html) }