Merge pull request #9 from mirus-ua/chore/8/remove-resource-toCss
chore: remove deprecated resources.ToCSS
This commit is contained in:
commit
2349b4e02c
@ -18,14 +18,15 @@
|
|||||||
{{ if and (isset .Params "color") (not (eq .Params.color "")) }}
|
{{ if and (isset .Params "color") (not (eq .Params.color "")) }}
|
||||||
{{ $localColorCss := resources.Get (printf "css/color/%s.scss" .Params.color) }}
|
{{ $localColorCss := resources.Get (printf "css/color/%s.scss" .Params.color) }}
|
||||||
{{ $localCss := slice $localColorCss $defaultStyles | resources.Concat (printf "css/%s-local.scss" .Params.color) }}
|
{{ $localCss := slice $localColorCss $defaultStyles | resources.Concat (printf "css/%s-local.scss" .Params.color) }}
|
||||||
{{ $localColorStyles := $localCss | resources.ToCSS }}
|
{{ $options := dict ("transpiler" "libsass") }}
|
||||||
|
{{ $localColorStyles := $localCss | css.Sass $options }}
|
||||||
<link rel="stylesheet" href="{{ $localColorStyles.Permalink }}">
|
<link rel="stylesheet" href="{{ $localColorStyles.Permalink }}">
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<!-- Theme Variables -->
|
<!-- Theme Variables -->
|
||||||
{{ $colorCss := resources.Get (printf "css/color/%s.scss" ($.Site.Params.ThemeColor | default "orange")) }}
|
{{ $colorCss := resources.Get (printf "css/color/%s.scss" ($.Site.Params.ThemeColor | default "blue")) }}
|
||||||
{{ $css := slice $colorCss $defaultStyles | resources.Concat "css/base.scss" }}
|
{{ $css := slice $colorCss $defaultStyles | resources.Concat "css/base.scss" }}
|
||||||
{{ $options := (dict "targetPath" "styles.css" "outputStyle" "compressed" "enableSourceMap" true "precision" 6 "includePaths" (slice "node_modules")) }}
|
{{ $options := (dict "transpiler" "libsass" "targetPath" "styles.css" "outputStyle" "compressed" "enableSourceMap" true "precision" 6 "includePaths" (slice "node_modules")) }}
|
||||||
{{ $styles := $css | resources.ToCSS $options }}
|
{{ $styles := $css | css.Sass $options }}
|
||||||
<link rel="stylesheet" href="{{ $styles.Permalink }}">
|
<link rel="stylesheet" href="{{ $styles.Permalink }}">
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user