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

github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictoria <hello@victoria.dev>2019-03-15 18:19:23 +0300
committerVictoria <hello@victoria.dev>2019-03-15 18:19:23 +0300
commitfabdd8764e9dafd4a91ee7a13b41acdace1ec180 (patch)
treedb0d4505abe25021ab98a883c152f7379710474f /layouts
parent29bca079b00f3281bf73a2df55d6ce8f71372837 (diff)
Reset to current master, remove crossorigin tags
- Reset previous changes on this branch because Victoria made some pretty messy commits - Only change the code this PR is intended to address
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/head/css.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/head/css.html b/layouts/partials/head/css.html
index 6671f4c..0b3f461 100644
--- a/layouts/partials/head/css.html
+++ b/layouts/partials/head/css.html
@@ -8,11 +8,11 @@
{{ $cssOpts := (dict "targetPath" "/css/main.css" ) }}
{{ $postCSSOpts := (dict "use" "autoprefixer" ) }}
{{ $bundle := $bundleRaw | toCSS $cssOpts | postCSS $postCSSOpts | minify | fingerprint }}
-<link rel="stylesheet" href="{{ $bundle.Permalink }}" integrity="{{ $bundle.Data.Integrity }}" crossorigin="anonymous" media="screen">
+<link rel="stylesheet" href="{{ $bundle.Permalink }}" integrity="{{ $bundle.Data.Integrity }}" media="screen">
{{ end }}
<!-- Custom css -->
{{ range .Site.Params.customCSS -}}
{{ $style := resources.Get . }}
- <link rel="stylesheet" href="{{ $style.Permalink }}" integrity="{{ $style.Data.Integrity }}" crossorigin="anonymous" media="screen">
+ <link rel="stylesheet" href="{{ $style.Permalink }}" integrity="{{ $style.Data.Integrity }}" media="screen">
{{- end }}