feat: display colored word cards from map

This commit is contained in:
Grail Finder (aider)
2025-05-01 18:10:43 +03:00
parent b5a67c2578
commit 024dbcffc2
3 changed files with 8 additions and 4 deletions

View File

@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTMX + Go Starter</title>
<title>Word Colors</title>
<script src="https://unpkg.com/htmx.org@1.9.10"></script>
</head>
<body>

6
go.mod
View File

@ -1,3 +1,7 @@
module golias
go 1.24.2
go 1.21
require (
github.com/go-chi/chi/v5 v5.0.12
)

View File

@ -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)
}