feat: Add Content Security Policy, enhance author information display with TypeIt animation, and include an RSS social link.
All checks were successful
Hugo Publish CI / build-and-deploy (push) Successful in 22s
All checks were successful
Hugo Publish CI / build-and-deploy (push) Successful in 22s
This commit is contained in:
13
layouts/_partials/csp.html
Normal file
13
layouts/_partials/csp.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<!-- CSP OVERRIDE ACTIVE -->
|
||||
{{ $policy := "default-src 'self';" }}
|
||||
{{ if not hugo.IsServer }}
|
||||
{{ $policy = "upgrade-insecure-requests; block-all-mixed-content; default-src 'self';" }}
|
||||
{{ end }}
|
||||
{{ $scriptsrc := printf "%s https://unpkg.com" (delimit .Site.Params.csp.scriptsrc " ") }}
|
||||
{{ printf `
|
||||
<meta http-equiv="Content-Security-Policy"
|
||||
content="%s child-src %s; font-src %s; form-action %s; frame-src %s; img-src %s; object-src %s; style-src %s; script-src %s; connect-src %s;">
|
||||
` $policy (delimit .Site.Params.csp.childsrc " ") (delimit .Site.Params.csp.fontsrc " ") (delimit
|
||||
.Site.Params.csp.formaction " ") (delimit .Site.Params.csp.framesrc " ") (delimit .Site.Params.csp.imgsrc " ") (delimit
|
||||
.Site.Params.csp.objectsrc " ") (delimit .Site.Params.csp.stylesrc " ") $scriptsrc (delimit .Site.Params.csp.connectsrc
|
||||
" ") | safeHTML }}
|
||||
Reference in New Issue
Block a user