jtbx
765b727cc7
All checks were successful
/ build (push) Successful in 13s
Stolen from https://github.com/dereckcurry/hugo-robots-meta-tags
27 lines
1.2 KiB
HTML
27 lines
1.2 KiB
HTML
{{- $options := dict "transpiler" "libsass" "targetPath" "css/style.css" -}}
|
|
{{- $jsResources := resources.Match "js/*.js" }}
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta charset="utf-8">
|
|
{{- partial "robots.html" . -}}
|
|
{{- with resources.GetRemote "https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css" }}
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}" crossorigin="anonymous">
|
|
{{ end }}
|
|
{{ with resources.Get "sass/main.scss" | toCSS $options | minify | fingerprint -}}
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
|
|
{{- end }}
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}thirdparty/fontawesome6/css/all.min.css" crossorigin="anonymous">
|
|
|
|
{{- range $jsResources }}
|
|
{{- with . | js.Build | minify | fingerprint }}
|
|
<script src="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous"></script>
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
{{- range .AlternativeOutputFormats -}}
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .RelPermalink $.Site.Title | safeHTML }}
|
|
{{- end }}
|
|
|
|
<title>{{ .Title }}</title>
|
|
<!-- TODO: Favicon -->
|