Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- {{ $custom := resources.Get "css/custom.css" }}
- {{ if eq .Site.Params.hackcss.disabled true }}
- {{ with (slice $custom | resources.Concat "styles.css").Content }}
- {{ if gt (len .) 0 }}
- <style>{{ . | safeCSS }}</style>
- {{ partial "meta/theme-color.html" . }}
- {{ end }}
- {{ end }}
- {{ else }}
- {{ $hack := resources.Get "css/vendor/hack/hack.css" }}
- {{ $standard := resources.Get "css/vendor/hack/standard.css" }}
- {{ $dark := resources.Get "css/vendor/hack/dark.css" }}
- {{ $darkgrey := resources.Get "css/vendor/hack/dark-grey.css" }}
- {{ $solarizeddark := resources.Get "css/vendor/hack/solarized-dark.css" }}
- {{ $theme := resources.Get "css/theme.css" | minify }}
- {{ if eq .Site.Params.hackcss.palette "dark-grey" }}
- {{ if eq .Site.Params.hackcss.mode "standard" }}
- {{ with (slice $hack $standard $darkgrey $theme $custom | resources.Concat "styles.css").Content }}
- <style>{{ . | safeCSS }}</style>
- {{ partial "meta/theme-color.html" . }}
- {{ end }}
- {{ else }}
- {{ with (slice $hack $darkgrey $theme $custom | resources.Concat "styles.css").Content }}
- <style>{{ . | safeCSS }}</style>
- {{ partial "meta/theme-color.html" . }}
- {{ end }}
- {{ end }}
- {{ else if eq .Site.Params.hackcss.palette "solarized-dark" }}
- {{ if eq .Site.Params.hackcss.mode "standard" }}
- {{ with (slice $hack $standard $solarizeddark $theme $custom | resources.Concat "styles.css").Content }}
- <style>{{ . | safeCSS }}</style>
- {{ partial "meta/theme-color.html" . }}
- {{ end }}
- {{ else }}
- {{ with (slice $hack $solarizeddark $theme $custom | resources.Concat "styles.css").Content }}
- <style>{{ . | safeCSS }}</style>
- {{ partial "meta/theme-color.html" . }}
- {{ end }}
- {{ end }}
- {{ else }}
- {{ if eq .Site.Params.hackcss.mode "standard" }}
- {{ with (slice $hack $standard $dark $theme $custom | resources.Concat "styles.css").Content }}
- <style>{{ . | safeCSS }}</style>
- {{ partial "meta/theme-color.html" . }}
- {{ end }}
- {{ else }}
- {{ with (slice $hack $dark $theme $custom | resources.Concat "styles.css").Content }}
- <style>{{ . | safeCSS }}</style>
- {{ partial "meta/theme-color.html" . }}
- {{ end }}
- {{ end }}
- {{ end }}
- {{ end }}
|