diff options
author | 2021-07-07 15:46:42 +0200 | |
---|---|---|
committer | 2021-07-07 15:46:42 +0200 | |
commit | c71e55ecc4c2381785b5f8ae10af74d8a537d6c3 (patch) | |
tree | d58bfed57b7232a9b254f8582f9725e2583f8ecd /internal/router/template.go | |
parent | Blocklist import (#77) (diff) | |
download | gotosocial-c71e55ecc4c2381785b5f8ae10af74d8a537d6c3.tar.xz |
clean up some weirdness in the router (#80)
Diffstat (limited to 'internal/router/template.go')
-rw-r--r-- | internal/router/template.go | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/internal/router/template.go b/internal/router/template.go new file mode 100644 index 000000000..cd1eb11db --- /dev/null +++ b/internal/router/template.go @@ -0,0 +1,23 @@ +package router + +import ( + "fmt" + "os" + "path/filepath" + + "github.com/gin-gonic/gin" + "github.com/superseriousbusiness/gotosocial/internal/config" +) + +// loadTemplates loads html templates for use by the given engine +func loadTemplates(cfg *config.Config, engine *gin.Engine) error { + cwd, err := os.Getwd() + if err != nil { + return fmt.Errorf("error getting current working directory: %s", err) + } + + tmPath := filepath.Join(cwd, fmt.Sprintf("%s*", cfg.TemplateConfig.BaseDir)) + + engine.LoadHTMLGlob(tmPath) + return nil +} |