mirror of
https://github.com/nxshock/simplefileshare.git
synced 2024-11-28 03:21:00 +05:00
Make html templates separate from site files
This commit is contained in:
parent
5d632da771
commit
d3e95a66f1
@ -1,6 +1,7 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"embed"
|
||||
"html/template"
|
||||
|
||||
log "github.com/sirupsen/logrus"
|
||||
@ -8,15 +9,20 @@ import (
|
||||
|
||||
var templates *template.Template
|
||||
|
||||
//go:embed templates/*.htm
|
||||
var templatesFS embed.FS
|
||||
|
||||
func initTemplates() error {
|
||||
log.Debugln("Templates initialization started.")
|
||||
defer log.Debugln("Templates initialization finished.")
|
||||
|
||||
var err error
|
||||
templates, err = template.ParseFS(siteFS, "site/index.htm")
|
||||
templates, err = template.ParseFS(templatesFS, "templates/index.htm")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
templatesFS = embed.FS{}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user