erynwells.me/layouts/partials/resources/page_css.html
Eryn Wells 294fa8343b Get all the fingerprinting done!
- Add partials in the resources folder for each of the major resources of my site
- Consolidate .css and .js files via resources.Concat where possible
2022-11-08 17:45:41 -08:00

5 lines
165 B
HTML

{{ $pageCSS := dict }}
{{ with .Resources.Match "*.css" }}
{{ $pageCSS = . | resources.Concat "page.css" | fingerprint "sha512" }}
{{ end }}
{{ return $pageCSS }}