mirror of
https://github.com/miniflux/v2.git
synced 2025-06-27 16:36:00 +00:00
Avoid extra HTTP request for fetching custom stylesheet
Use inline CSS with a nonce and move CSP headers to a meta tag.
This commit is contained in:
parent
09be3d2bac
commit
dd3f496d06
5 changed files with 14 additions and 21 deletions
|
@ -51,6 +51,9 @@ func (f *funcMap) Map() template.FuncMap {
|
|||
"safeURL": func(url string) template.URL {
|
||||
return template.URL(url)
|
||||
},
|
||||
"safeCSS": func(str string) template.CSS {
|
||||
return template.CSS(str)
|
||||
},
|
||||
"noescape": func(str string) template.HTML {
|
||||
return template.HTML(str)
|
||||
},
|
||||
|
@ -91,8 +94,8 @@ func (f *funcMap) Map() template.FuncMap {
|
|||
iconName,
|
||||
))
|
||||
},
|
||||
"rand": func() string {
|
||||
return crypto.GenerateRandomStringHex(10)
|
||||
"nonce": func() string {
|
||||
return crypto.GenerateRandomStringHex(16)
|
||||
},
|
||||
|
||||
// These functions are overrode at runtime after the parsing.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue