github.com/neohugo/neohugo@v0.123.8/create/skeletons/theme/layouts/partials/head/css.html (about)

     1  {{- with resources.Get "css/main.css" }}
     2    {{- if eq hugo.Environment "development" }}
     3      <link rel="stylesheet" href="{{ .RelPermalink }}">
     4    {{- else }}
     5      {{- with . | minify | fingerprint }}
     6        <link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
     7      {{- end }}
     8    {{- end }}
     9  {{- end }}