diff options
Diffstat (limited to 'server.go')
| -rw-r--r-- | server.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -96,7 +96,8 @@ func init() { return nil } label := path[len(fp.Clean(root)):] - tmpl[label] = template.Must(template.ParseFiles(fp.Join(root, "base.html"), path)) + tmpl[label] = template.Must(template.ParseFiles( + fp.Join(root, "base.html"), path)) return nil }) if err != nil { |