2021-09-25 20:52:01 -05:00
< head >
< meta charset = "UTF-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2021-10-09 18:56:03 -05:00
{{ hugo.Generator }}
2021-09-25 20:52:01 -05:00
2021-10-10 19:36:47 -05:00
{{ with resources.Get "css/bobastyle.css" | fingerprint "sha512" }}
2021-10-13 20:35:30 -05:00
< link rel = "stylesheet" type = "text/css" href = "{{ .Permalink }}" integrity = "{{ .Data.Integrity }}" crossorigin = "anonymous" >
2021-10-15 19:15:36 -05:00
{{ end }}
{{ with resources.Get "css/syntax.css" | fingerprint "sha512" }}
< link rel = "stylesheet" type = "text/css" href = "{{ .Permalink }}" integrity = "{{ .Data.Integrity }}" crossorigin = "anonymous" >
2021-10-10 19:36:47 -05:00
{{ end }}
2021-09-28 18:28:22 -05:00
{{ with .Site.Params.faviconICO }}
2021-10-15 17:45:03 -05:00
< link rel = "icon" type = "image/x-icon" href = "{{ . | absURL }}" / >
2021-09-28 18:28:22 -05:00
{{ end }}
{{ with .Site.Params.faviconPNG }}
2021-10-15 17:45:03 -05:00
< link rel = "icon" type = "image/png" href = "{{ . | absURL }}" / >
2021-09-28 18:28:22 -05:00
{{ end }}
2021-09-25 20:52:01 -05:00
{{ range .AlternativeOutputFormats -}}
{{ printf `< link rel = "%s" type = "%s" href = "%s" title = "%s" / > ` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
{{ end -}}
2021-10-08 20:15:42 -05:00
{{ if .IsHome }}
< title > {{ .Site.Title }}< / title >
{{ else }}
2021-10-15 19:30:46 -05:00
< title > {{ print .Title " | " .Site.Title }}< / title >
2021-10-08 20:15:42 -05:00
{{ end }}
2021-09-25 20:52:01 -05:00
2021-10-09 14:09:02 -05:00
{{ partial "opengraph.html" . }}
2021-11-13 19:37:50 -06:00
{{ partial "twitter_cards.html" . }}
{{ partial "schema.html" . }}
2021-10-08 20:32:49 -05:00
< meta name = "description" content = "{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}" >
2021-10-27 19:51:46 -05:00
{{ partial "author-metadata.html" . }}
2021-09-25 20:52:01 -05:00
< / head >