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-11-22 02:21:15 -06: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" }}
|
2021-11-22 02:21:15 -06:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ .Permalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
|
2021-11-18 17:26:02 -06:00
|
|
|
{{ end }}
|
|
|
|
{{ with resources.Get "css/syntax-light.css" | fingerprint "sha512" }}
|
2021-11-22 02:21:15 -06:00
|
|
|
<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-11-22 02:21:15 -06:00
|
|
|
<link rel="icon" type="image/x-icon" href="{{ . | absURL }}" />
|
2021-09-28 18:28:22 -05:00
|
|
|
{{ end }}
|
|
|
|
{{ with .Site.Params.faviconPNG }}
|
2021-11-22 02:21:15 -06:00
|
|
|
<link rel="icon" type="image/png" href="{{ . | absURL }}" />
|
2021-09-28 18:28:22 -05:00
|
|
|
{{ end }}
|
|
|
|
|
2021-10-08 20:15:42 -05:00
|
|
|
{{ if .IsHome }}
|
2021-11-22 02:21:15 -06:00
|
|
|
<title>{{ .Site.Title | plainify }}</title>
|
2021-10-08 20:15:42 -05:00
|
|
|
{{ else }}
|
2021-11-22 02:21:15 -06:00
|
|
|
<title>{{ (print .Title " | " .Site.Title) | plainify }}</title>
|
2021-10-08 20:15:42 -05:00
|
|
|
{{ end }}
|
2021-09-25 20:52:01 -05:00
|
|
|
|
2021-11-22 01:57:35 -06:00
|
|
|
{{ partial "seo-tags/opengraph.html" . }}
|
|
|
|
{{ partial "seo-tags/twitter-cards.html" . }}
|
|
|
|
{{ partial "seo-tags/schema.html" . }}
|
|
|
|
{{ partial "seo-tags/link.html" . }}
|
|
|
|
{{ partial "seo-tags/author.html" . }}
|
2021-10-08 20:32:49 -05:00
|
|
|
|
2021-11-20 18:24:56 -06:00
|
|
|
<meta name="language" content="{{ .Language.Lang }}">
|
2021-11-22 15:13:41 -06:00
|
|
|
<meta name="description" content="{{ (partial "seo-tags/description.html" .) | plainify }}">
|
2021-09-25 20:52:01 -05:00
|
|
|
</head>
|