15 lines
234 B
Go
15 lines
234 B
Go
package render
|
|
|
|
import (
|
|
"html/template"
|
|
"strings"
|
|
"time"
|
|
)
|
|
|
|
// Funcs is a global funcmap that the blog can hook its internal
|
|
// methods onto.
|
|
var Funcs = template.FuncMap{
|
|
"StringsJoin": strings.Join,
|
|
"Now": time.Now,
|
|
}
|