2020-09-07 12:49:30 +00:00
|
|
|
{{ if (or (eq hugo.Environment "gitea") (eq hugo.Environment "preview") ) }}
|
2020-09-10 10:15:24 +00:00
|
|
|
<link rel="stylesheet" href="/css/site.min.css" />
|
|
|
|
<link rel="stylesheet" href="/css/player.min.css" />
|
|
|
|
{{ else if (or (eq hugo.Environment "offline") (.Site.IsServer)) }}
|
2020-09-07 12:49:30 +00:00
|
|
|
{{ $style := resources.Get "css/site.css" | postCSS (dict "config" "./assets/css/postcss.config.js") | minify }}
|
2020-09-10 10:15:24 +00:00
|
|
|
<link rel="stylesheet" href="{{ $style.Permalink }}" />
|
2020-09-10 01:23:08 +00:00
|
|
|
{{ $style := resources.Get "css/player.css" | postCSS (dict "config" "./assets/css/postcss.config.js") | minify }}
|
2020-09-10 10:15:24 +00:00
|
|
|
<link rel="stylesheet" href="{{ $style.Permalink }}" />
|
2020-08-18 23:14:35 +00:00
|
|
|
{{ end }}
|