{{ $style := resources.Get "styles/main.scss" }}
{{ with $style }}
    {{ $styleCSS := . | toCSS }}
    {{ if not $.Site.Params.debug }}
      {{ $styleCSS = $styleCSS | minify }}
    {{ end }}
    {{ $styleCSS = $styleCSS | fingerprint }}
    <link rel="stylesheet" href="{{ $styleCSS.Permalink }}" integrity="{{ $styleCSS.Data.Integrity }}">
{{ end }}