summaryrefslogtreecommitdiff
path: root/tpls.go
blob: e7298fa6580f39cec038a65b782c7cf72d4b84b5 (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
26
27
28
package main

import (
	"html/template"
	"log"
	"path"
)

func loadTpl(tplpath, name string) *template.Template {
	tpl, err := template.ParseFiles(
		path.Join(tplpath, "master.tpl"),
		path.Join(tplpath, name+".tpl"))
	if err != nil {
		log.Fatalf("Could not load template \"%s\": %s", name, err)
	}
	return tpl
}

var tplRegister *template.Template

func initTpls() {
	tplpath, err := conf.GetString("paths", "tpls")
	if err != nil {
		log.Fatalf("Could not get paths.tpls config: %s", err)
	}

	tplRegister = loadTpl(tplpath, "register")
}