This commit is contained in:
Beto
2024-02-27 22:15:14 -06:00
parent 06e223aba4
commit 3da32c8359
4 changed files with 45 additions and 0 deletions

32
main.go Normal file
View File

@@ -0,0 +1,32 @@
package main
import (
"html/template"
"net/http"
)
type Todo struct {
Title string
Done bool
}
type TodoPageData struct {
PageTitle string
Todos []Todo
}
func main() {
tmpl := template.Must(template.ParseFiles("layout.html"))
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
data := TodoPageData{
PageTitle: "My TODO list",
Todos: []Todo{
{Title: "Task 1", Done: false},
{Title: "Task 2", Done: true},
{Title: "Task 3", Done: true},
},
}
tmpl.Execute(w, data)
})
http.ListenAndServe(":8000", nil)
}