mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
try to fix issue #13
This commit is contained in:
parent
e428e3b308
commit
53ec7417c6
@ -9,7 +9,7 @@
|
||||
|
||||
{{ if ne .Config.StyleSheet "" }}
|
||||
<style>
|
||||
{{.Config.StyleSheet}}
|
||||
{{ Safe .Config.StyleSheet }}
|
||||
</style>
|
||||
{{ end }}
|
||||
</head>
|
||||
|
@ -76,6 +76,9 @@ func (p Page) PrintAsHTML(w http.ResponseWriter, templates ...string) (int, erro
|
||||
// execute the template if there aren't errors
|
||||
functions := template.FuncMap{
|
||||
"Defined": variables.Defined,
|
||||
"Safe": func(s string) template.HTML {
|
||||
return template.HTML(s)
|
||||
},
|
||||
}
|
||||
|
||||
if p.Minimal {
|
||||
|
Loading…
Reference in New Issue
Block a user