summaryrefslogtreecommitdiff
path: root/layouts/partials/head/css.html
blob: 91b928ded42ec3213cf26112be91ae0ecfcfbe15 (plain)
1
2
3
4
5
6
7
8
9
{{- with resources.Get "css/main.css" }}
  {{- if eq hugo.Environment "development" }}
    <link rel="stylesheet" href="{{ .RelPermalink }}">
  {{- else }}
    {{- with . | minify | fingerprint }}
      <link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
    {{- end }}
  {{- end }}
{{- end }}