52 lines
1.1 KiB
Go
52 lines
1.1 KiB
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
"path/filepath"
|
||
|
"text/template"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type templateData struct {
|
||
|
CurrentYear int
|
||
|
}
|
||
|
|
||
|
func humanDate(t time.Time) string {
|
||
|
return t.Format("02 Jan 2006 at 15:04")
|
||
|
}
|
||
|
|
||
|
var functions = template.FuncMap {
|
||
|
"humanDate": humanDate,
|
||
|
}
|
||
|
|
||
|
func newTemplateCache() (map[string]*template.Template, error) {
|
||
|
cache := map[string]*template.Template{}
|
||
|
pages, err := filepath.Glob("./ui/html/pages/*.tmpl.html")
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
for _, page := range pages {
|
||
|
name := filepath.Base(page)
|
||
|
ts, err := template.New(name).Funcs(functions).ParseFiles("./ui/html/base.tmpl.html")
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
ts, err = ts.ParseGlob("./ui/html/partials/*.tmpl.html")
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
ts, err = ts.ParseFiles(page)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
cache[name] = ts
|
||
|
}
|
||
|
return cache, nil
|
||
|
}
|
||
|
|
||
|
func (app *application) newTemplateData(r *http.Request) *templateData {
|
||
|
return &templateData {
|
||
|
CurrentYear: time.Now().Year(),
|
||
|
}
|
||
|
}
|