25 lines
517 B
HTML
25 lines
517 B
HTML
{{ define "head" }}
|
|
|
|
{{ with .Resources.GetMatch "{*.scss,*.css}" }}
|
|
{{ $style := . | toCSS | minify | fingerprint }}
|
|
<link
|
|
rel="stylesheet"
|
|
href="{{ $style.Permalink }}"
|
|
integrity="{{ $style.Data.Integrity }}"
|
|
media="screen">
|
|
{{ end }}
|
|
|
|
{{ with .Resources.GetMatch "*.js" }}
|
|
{{ $js := . | minify | minify | fingerprint }}
|
|
<script
|
|
type="text/javascript"
|
|
src="{{ $js.Permalink }}"
|
|
integrity="{{ $js.Data.Integrity }}">
|
|
</script>
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
{{ .Content }}
|
|
{{ end }} |