14 lines
350 B
Go
14 lines
350 B
Go
|
package templates
|
||
|
|
||
|
import (
|
||
|
"html/template"
|
||
|
"path/filepath"
|
||
|
)
|
||
|
|
||
|
var IndexTemplate = template.Must(template.ParseFiles(
|
||
|
filepath.Join("admin", "views", "layout.html"),
|
||
|
filepath.Join("view", "prideflag.html"),
|
||
|
filepath.Join("admin", "components", "release", "release-list-item.html"),
|
||
|
filepath.Join("admin", "views", "index.html"),
|
||
|
))
|