Compare commits

..

No commits in common. "bd36f68666fcbb1a5498bc71c6862f5391910c79" and "f2b8d77955edb53d0f19f84d0fd62279e1029aab" have entirely different histories.

3 changed files with 7 additions and 7 deletions

View file

@ -483,7 +483,7 @@ body {
padding-left: 3rem;
padding-top: 0.5rem;
padding-right: 2rem;
color: black;
color: green;
}
.headiter {

View file

@ -24,14 +24,14 @@
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#996561">
{{ if eq hugo.Environment "dev" }}
{{ $style := resources.Get "css/site.css" | postCSS (dict "config" "assets/css/postcss.config.js") | minify }}
<link rel="stylesheet" href="{{ $style.RelPermalink }}" />
{{ $style := resources.Get "css/player.css" | postCSS (dict "config" "assets/css/postcss.config.js") | minify }}
<link rel="stylesheet" href="{{ $style.RelPermalink }}" />
{{ else }}
{{ if (or (eq hugo.Environment "gitea") (eq hugo.Environment "preview") ) }}
{{ $sitemin := resources.Get "css/site.min.css" }}
<link rel="stylesheet" href="{{ $sitemin.RelPermalink }}" />
{{ $player := resources.Get "css/player.min.css" }}
<link rel="stylesheet" href="{{ $player.RelPermalink }}" />
{{ else }}
{{ $style := resources.Get "css/site.css" | postCSS (dict "config" "assets/css/postcss.config.js") | minify }}
<link rel="stylesheet" href="{{ $style.RelPermalink }}" />
{{ $style := resources.Get "css/player.css" | postCSS (dict "config" "assets/css/postcss.config.js") | minify }}
<link rel="stylesheet" href="{{ $style.RelPermalink }}" />
{{ end }}