diff --git a/main.go b/main.go index ffea116..2382392 100644 --- a/main.go +++ b/main.go @@ -10,7 +10,7 @@ import ( func main() { // Главная страница http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { - tmpl := template.Must(template.ParseFiles("templates/index.html")) + tmpl := template.Must(template.ParseFiles("template/index.html")) tmpl.Execute(w, nil) })