You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
374 B
23 lines
374 B
package templates
|
|
|
|
import "html/template"
|
|
|
|
func UseFuncs() template.FuncMap {
|
|
return template.FuncMap{
|
|
"add": func(i int) int {
|
|
return i + 1
|
|
},
|
|
"sub": func(i int) int {
|
|
return i - 1
|
|
},
|
|
"getJSAppURL": func() string {
|
|
return URLJSApp
|
|
},
|
|
"getIndexURL": func() string {
|
|
return URLIndex
|
|
},
|
|
"getBlogURL": func() string {
|
|
return URLBlog
|
|
},
|
|
}
|
|
}
|
|
|