16 lines
475 B
HTML
16 lines
475 B
HTML
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>{{ block "title" . }}
|
|
{{- .Title }} - {{ .Site.Title -}}
|
|
{{ end }}</title>
|
|
{{ if .Description }}
|
|
<meta name="description" content="{{ .Description }}" />
|
|
{{ end }}
|
|
{{ if .Keywords }}
|
|
<meta name="keywords" content="{{ delimit .Keywords "," }}" />
|
|
{{ end }}
|
|
{{ if .Params.Author }}
|
|
<meta name="author" content="{{ .Params.Author}}" />
|
|
{{ end }}
|
|
{{ hugo.Generator }}
|