15 lines
659 B
HTML
15 lines
659 B
HTML
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}</title>
|
|
{{ with .Description }}
|
|
<meta name="description" content="{{ . }}">
|
|
{{ else }}
|
|
{{ with site.Params.description }}
|
|
<meta name="description" content="{{ . }}">
|
|
{{ end }}
|
|
{{ end }}
|
|
<link rel="icon" href="{{ "favicon.ico" | absURL }}" type="image/x-icon">
|
|
<link rel="shortcut icon" href="{{ "favicon.ico" | absURL }}" type="image/x-icon">
|
|
<link rel="icon" href="{{ "favicon.png" | absURL }}" type="image/png" sizes="256x256">
|
|
{{ partialCached "head/css.html" . }}
|