feat: display colored word cards from map
This commit is contained in:
@ -5,7 +5,7 @@ import (
|
||||
"net/http"
|
||||
)
|
||||
|
||||
var roundWords map[string]string{
|
||||
var roundWords = map[string]string{
|
||||
"hamster": "blue",
|
||||
"child": "red",
|
||||
"wheel": "white",
|
||||
@ -18,6 +18,6 @@ func HandlePing(w http.ResponseWriter, r *http.Request) {
|
||||
}
|
||||
|
||||
func HandleHome(w http.ResponseWriter, r *http.Request) {
|
||||
tmpl := template.Must(template.ParseFiles("components/index.html"))
|
||||
tmpl := template.Must(template.ParseFiles("../components/index.html"))
|
||||
tmpl.Execute(w, nil)
|
||||
}
|
||||
|
Reference in New Issue
Block a user