feat - Allow to overwrite login template

This commit is contained in:
Jan Eitzinger 2023-06-22 07:01:29 +02:00
parent fc33bfb47b
commit eb867528e3
2 changed files with 15 additions and 0 deletions

View File

@ -325,6 +325,13 @@ func main() {
if config.Keys.EmbedStaticFiles {
r.PathPrefix("/").Handler(web.ServeFiles())
if i, err := os.Stat("./var/img"); err == nil {
if i.IsDir() {
log.Info("Use local directory for static images")
r.Handle("/img", http.FileServer(http.Dir("./var/img")))
}
}
} else {
r.PathPrefix("/").Handler(http.FileServer(http.Dir(config.Keys.StaticFiles)))
}

View File

@ -47,6 +47,14 @@ func init() {
return nil
}
if path == "templates/login.tmpl" {
if _, err := os.Stat("./var/login.tmpl"); err == nil {
log.Info("overwrite login.tmpl with local file")
templates[strings.TrimPrefix(path, "templates/")] =
template.Must(template.Must(base.Clone()).ParseFiles("./var/login.tmpl"))
return nil
}
}
if path == "templates/imprint.tmpl" {
if _, err := os.Stat("./var/imprint.tmpl"); err == nil {
log.Info("overwrite imprint.tmpl with local file")