From 9dc5dc0fd02f2fe219bdad480e1f8d244396218a Mon Sep 17 00:00:00 2001 From: Padraic Renaghan Date: Sat, 13 Oct 2018 08:36:01 -0400 Subject: [PATCH] Crossorigin=Anonymous on theme css (#97) * crossorigin on the theme stylesheet * needed on custom stylesheet * on the theme css link --- layouts/_default/baseof.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 73d7cc7..4c7d528 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -25,7 +25,7 @@ {{ else }} {{ $cssOpts := (dict "targetPath" "css/coder.css" ) }} {{ $styles := resources.Get "scss/coder.scss" | resources.ExecuteAsTemplate "style.coder.css" . | toCSS $cssOpts | minify | fingerprint }} - + {{ end }} {{ if .Site.Params.rtl }} @@ -36,7 +36,7 @@ {{ else }} {{ $cssOpts := (dict "targetPath" "css/coder-rtl.css" ) }} {{ $styles := resources.Get "scss/coder-rtl.scss" | resources.ExecuteAsTemplate "style.coder-rtl.css" . | toCSS $cssOpts | minify | fingerprint }} - + {{ end }} {{ end }}