summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorLaria Carolin Chabowski <laria@laria.me>2021-10-15 17:21:35 +0200
committerLaria Carolin Chabowski <laria@laria.me>2021-10-15 17:21:35 +0200
commitc1d54197d0bd3962b095dea1553a12ada4ad17dd (patch)
tree3545e00e94677a0b44d04e068d28c33a59810017 /main.go
parent8e496d82f6790f7cb8d5c9cb79ef537ccab600e6 (diff)
downloadstartpage-c1d54197d0bd3962b095dea1553a12ada4ad17dd.tar.gz
startpage-c1d54197d0bd3962b095dea1553a12ada4ad17dd.tar.bz2
startpage-c1d54197d0bd3962b095dea1553a12ada4ad17dd.zip
Move template into own directory
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/main.go b/main.go
index 4543b9c..cdae7f3 100644
--- a/main.go
+++ b/main.go
@@ -22,7 +22,9 @@ func loadTemplate() {
gopaths := strings.Split(os.Getenv("GOPATH"), ":")
for _, p := range gopaths {
var err error
- tpl, err = template.ParseFiles(path.Join(p, "src", "github.com", "silvasur", "startpage", "template.html"))
+ tpl, err = template.ParseFiles(
+ path.Join(p, "src", "github.com", "silvasur", "startpage", "templates", "template.html"),
+ )
if err == nil {
return
}