go-tmpl-demo

ref: master

./main.go


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package main

import (
	"net/http"
	"log"
	"html/template"

	"github.com/go-chi/chi"
)

type WebCtx struct {
	Title	string
}

func main() {
	router := chi.NewRouter()

	router.Get("/", func(w http.ResponseWriter, r *http.Request) {
		tmpl, err := template.ParseFiles("base.html", "index.html")
		if err != nil {
			log.Fatalf("Can't parse files due to %v", err)
			return
		}

		err = tmpl.ExecuteTemplate(w, "index.html", &WebCtx{
			Title: "Test",
		})

		if err != nil {
			log.Fatalf("Can't execute template due to %v", err)
			return
		}
	})

	router.Get("/working", func(w http.ResponseWriter, r *http.Request) {
		tmpl, err := template.ParseFiles("test.html")
		if err != nil {
			log.Fatalf("Can't parse files due to %v", err)
			return
		}

		err = tmpl.ExecuteTemplate(w, "test.html", &WebCtx{
			Title: "Test",
		})

		if err != nil {
			log.Fatalf("Can't execute template due to %v", err)
			return
		}
	})

	log.Printf("Running on :2000")
	http.ListenAndServe(":2000", router)
}