mirror of https://github.com/docker/docs.git
16 lines
572 B
HTML
16 lines
572 B
HTML
{{- /*
|
|
Processes and links the main CSS file (`assets/css/styles.css`).
|
|
- Applies PostCSS, minification, fingerprinting, and post-processing in production.
|
|
- Adds inline CSS to hide injected images in production builds.
|
|
*/ -}}
|
|
{{ $styles := resources.Get "css/styles.css" }}
|
|
{{ $styles = $styles | css.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" />
|