all repos — website @ 26e6684674d56e01fdfc67c2e0ad57c331d8d0ab

My website

fix display of cv
Alan Pearce alan@alanpearce.eu
Thu, 01 Aug 2024 17:05:36 +0200
commit

26e6684674d56e01fdfc67c2e0ad57c331d8d0ab

parent

2fffb59ecfcc7e9a7cd5fc1a4c7d5998ad1f6b64

2 files changed, 2 insertions(+), 1 deletions(-)

jump to
M config.tomlconfig.toml
@@ -53,6 +53,8 @@ ## index.html style     "'sha256-dCSzNS1o8vygl80V2G2nPTiSOUNvyDnW+06hHS4ZdHQ='",
     ## atom.xml style
     "'sha256-CFhPA4p8skr5MyhReF+Tk2GzmYzXdECg8zm+o7EOVPI=",
+    ## cv style
+    "'sha256-FzrPQ6x2ugtwEN5peA8OqpIvrV3uXqkpfUMHG8P2uT0='",
   ]
   frame-ancestors = [
     "https://kagi.com",
M internal/server/server.gointernal/server/server.go
@@ -75,7 +75,6 @@ } }
 
 func updateCSPHashes(config *cfg.Config, r *builder.Result) {
-	clear(config.CSP.StyleSrc)
 	for i, h := range r.Hashes {
 		config.CSP.StyleSrc[i] = fmt.Sprintf("'%s'", h)
 	}