mirror of
https://github.com/carsonip/hugo-theme-minos
synced 2025-12-30 03:19:49 -08:00
9 lines
612 B
HTML
9 lines
612 B
HTML
{{- $description := or (.Description) (.Site.Params.Description) -}}
|
|
{{- $keywords := or (.Keywords) (.Site.Params.Keywords) -}}
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
|
|
{{ with .Site.Params.Author -}}<meta name="author" content="{{ . }}">{{- end }}
|
|
{{ if $description -}} <meta name="description" content="{{ $description }}"> {{- end }}
|
|
{{ if $keywords -}} <meta name="keywords" content="{{ range $keywords }}{{ . }},{{ end }}"> {{- end }}
|