21 lines
860 B
HTML
21 lines
860 B
HTML
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{{ with (or .Description .Site.Params.description) }}
|
|
<meta name="description" content="{{ . }}"/>
|
|
{{ end }}
|
|
{{ with .Keywords }}<meta name="keywords" content="{{ delimit . ", " }}"/>{{ end }}
|
|
<link rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/"/>
|
|
<link rel="canonical" href="{{ .Permalink }}"/>
|
|
{{ range slice "style.css" "syntax.css"}}
|
|
{{- with resources.Get . }}
|
|
{{- if eq hugo.Environment "development" }}
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}">
|
|
{{- else }}
|
|
{{- with . | minify | fingerprint }}
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{ end }}
|
|
<title>{{ printf "%s | %s" .Title site.Title }}</title>
|
|
|