mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2025-04-29 12:03:31 +08:00
11 lines
505 B
HTML
11 lines
505 B
HTML
{{ $sass := resources.Get "scss/style.scss" }}
|
|
{{ $style := $sass | resources.ToCSS | minify }}
|
|
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
|
|
|
|
{{ if .Site.Params.comments.enabled }}
|
|
{{ if eq .Site.Params.comments.provider "cactus" }}
|
|
{{ $sass_cactus := resources.Get "scss/partials/comments/provider/cactus.scss" }}
|
|
{{ $style_cactus := $sass_cactus | resources.ToCSS | minify }}
|
|
<link rel="stylesheet" href="{{ $style_cactus.RelPermalink }}">
|
|
{{ end }}
|
|
{{ end }} |