33 lines
805 B
HTML
33 lines
805 B
HTML
<meta charset="utf-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, shrink-to-fit=no"
|
|
/>
|
|
<meta
|
|
name="description"
|
|
content="{{ with .Description }}
|
|
{{ . }}
|
|
{{ else }}
|
|
{{ with .Summary }}
|
|
{{ . }}
|
|
{{ else }}
|
|
{{ .Site.Params.description }}
|
|
{{ end }}
|
|
{{ end }}"
|
|
/>
|
|
<meta name="author" content="{{ .Site.Params.author }}" />
|
|
{{ with .Keywords }}
|
|
<meta name="keywords" content="{{ delimit . ", " }}" />
|
|
{{ end }}
|
|
|
|
|
|
<link rel="canonical" href="{{ .Site.BaseURL }}" />
|
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
<title>
|
|
{{ if .IsHome }}
|
|
{{ site.Title }}
|
|
{{ else }}
|
|
{{ printf "%s | %s" .Title site.Title }}
|
|
{{ end }}
|
|
</title>
|
|
{{ partialCached "head/css.html" . }}
|