mirror of
https://github.com/nxshock/simplefileshare.git
synced 2025-07-01 00:03:35 +05:00
Make html templates separate from site files
This commit is contained in:
parent
5d632da771
commit
d3e95a66f1
2 changed files with 7 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue