1
0
Files
www.taylors.life/themes/hugo-theme-minos/layouts/partials/meta.html
Eric Taylor 9a313c53a8 Move theme from subrepo into the main repo
the theme is customized for this site so having it
as a sub repo dosent make sense
2025-12-24 11:05:37 -05:00

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 }}