Files
docker-docs/layouts/partials/utils/css.html
2023-09-28 17:32:05 +02:00

11 lines
345 B
HTML

{{ $styles := resources.Get "css/styles.css" }}
{{ $styles = $styles | resources.PostCSS }}
{{ if hugo.IsProduction }}
{{ $styles = $styles | minify | fingerprint | resources.PostProcess }}
<style>
/* hide img injected by prod scripts */
body > img { display: none }
</style>
{{ end }}
<link href="{{ $styles.Permalink }}" rel="stylesheet" />