Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ineesalmeida/almeida-cv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorInĂªs Almeida <ineesalmeida@gmail.com>2021-06-16 21:17:25 +0300
committerGitHub <noreply@github.com>2021-06-16 21:17:25 +0300
commit9793150e7d8948738ce5229602add6d55c536536 (patch)
tree0bf5d1f7f9fac9a87736a8d43a0945dd8c2b5877
parent559509bc5ab2aae370a5512669504a27cffa56ad (diff)
parentfffa2b780a91b27ce60072dbf232e12002aaaa7f (diff)
Merge pull request #10 from MichalRogowski/feature/fix_crossorigin
fix: Add Crossorigin=Anonymous on theme css
-rw-r--r--layouts/partials/head.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 07f35a6..a1a4e90 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -9,5 +9,5 @@
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
{{ $style := resources.Get "sass/main.scss" | resources.ExecuteAsTemplate "style.main.scss" . | toCSS | minify | fingerprint }}
- <link rel="stylesheet" href="{{ $style.Permalink }}" integrity="{{ $style.Data.Integrity }}" >
+ <link rel="stylesheet" href="{{ $style.RelPermalink }}" integrity="{{ $style.Data.Integrity }}" crossorigin="anonymous" media="screen" />
</head> \ No newline at end of file