1
0
Fork 0
va/layouts/partials/head.html

20 lines
596 B
HTML
Raw Permalink Normal View History

2022-02-24 21:29:51 +00:00
{{- with partialCached "va/style" . -}}
<link rel="preload stylesheet"
2021-08-18 23:29:49 +00:00
as="style"
href="{{ .RelPermalink }}"
2021-08-18 23:29:49 +00:00
integrity="{{ .Data.Integrity }}"
2022-02-24 21:29:51 +00:00
type="{{ .MediaType.String }}"
importance="high"
2021-08-18 23:29:49 +00:00
crossorigin="anonymous"
2022-02-24 21:29:51 +00:00
referrerpolicy="no-referrer-when-downgrade">
{{- end -}}
{{- with partialCached "va/script" . -}}
<link rel="preload"
as="script"
href="{{ .RelPermalink }}"
2021-08-18 23:29:49 +00:00
integrity="{{ .Data.Integrity }}"
2022-02-24 21:29:51 +00:00
type="{{ .MediaType.String }}"
importance="high"
crossorigin="anonymous"
referrerpolicy="no-referrer-when-downgrade">
{{- end -}}