10 lines
345 B
HTML
10 lines
345 B
HTML
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}</title>
|
|
|
|
{{- partial "head/css.html" . }}
|
|
|
|
{{ with .Site.Params.favicon -}}
|
|
<link rel="shortcut icon" href="{{ . }}" type="image/png" />
|
|
{{- end }} |