yamt

YAMT: Yet Another Minimal Theme for Hugo
git clone https://git.ckiri.com/yamt.git
Log | Files | Refs | LICENSE

css.html (318B)


      1 {{- with resources.Get "css/main.css" -}}
      2 {{- if hugo.IsDevelopment -}}
      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 }}