summaryrefslogtreecommitdiff
path: root/templates.go
blob: 6b4fe51c41c0400871c89ea2ee482cd9530d4c3e (plain)
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
package main

import (
	"log"
	"net/http"
	"text/template" // FIXME switch to html/template for security reasons
	// and make a workaround for rendered Markdown insertion
)

func setupTemplates() *template.Template {
	t, err := template.ParseGlob(config.Http.Templates + "/*.html")
	if err != nil {
		panic(err)
	}
	return t
}

func ServeTemplate(w http.ResponseWriter, name string, data interface{}) {
	err := templates.ExecuteTemplate(w, name, data)
	if err != nil {
		log.Print(err)
		http.Error(w, http.StatusText(404), 404)
		return
	}
}