diff options
| author | Florian La Roche <florian.laroche@gmail.com> | 2020-04-19 20:10:40 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-20 02:10:40 +0800 | 
| commit | fa5f2aed895cc3616a2b9af4fdc00c1218c8bd64 (patch) | |
| tree | 4fc37336daac61631bb061a32051cf495f0728f1 /layouts/partials/head.html | |
| parent | 3788f6d46d8a473e389a935367002b698315da2a (diff) | |
refactor(resources): use relative links (#245)
Diffstat (limited to 'layouts/partials/head.html')
| -rw-r--r-- | layouts/partials/head.html | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 7a9f3ea..483339d 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -62,7 +62,7 @@  <!-- Styles -->  {{ $style := resources.Get "sass/main.scss" | toCSS | minify | fingerprint }} -<link href="{{ $style.Permalink }}" rel="stylesheet"> +<link href="{{ $style.RelPermalink }}" rel="stylesheet">  {{ if .Site.Params.publicCDN.enable -}}    {{ if .Site.Params.fancybox }}{{ .Site.Params.publicCDN.fancyboxCSS | safeHTML }}{{ end }}  {{- else -}} | 
