コード例 #1
0
ファイル: home.go プロジェクト: adlerhsieh/another_go_web_app
func (this *indexController) get(w http.ResponseWriter, req *http.Request) {
	vm := viewmodels.Get("Index Page", "index")
	w.Header().Add("Content Type", "text/html")
	this.template.Execute(w, vm)
}
コード例 #2
0
func (this *categoriesController) get(w http.ResponseWriter, req *http.Request) {
	vm := viewmodels.Get("Categoreis Page", "categories")
	w.Header().Add("Content Type", "text/html")
	this.template.Execute(w, vm)
}