2022-01-06 13:58:10 +01:00
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2021-04-27 23:44:35 +02:00
|
|
|
<meta name="color-scheme" content="light dark" />
|
2021-04-22 22:07:09 +02:00
|
|
|
|
|
|
|
{{ $description := default (default .Site.Title .Site.Params.description) (default .Summary .Description) }}
|
|
|
|
{{ $keywords := default .Site.Params.Keywords .Keywords }}
|
|
|
|
|
|
|
|
{{ with $description }}
|
2022-01-06 13:58:10 +01:00
|
|
|
<meta name="description" content="{{ . }}" />
|
2021-04-22 22:07:09 +02:00
|
|
|
{{ end }}
|
|
|
|
{{ with $keywords }}
|
2022-01-06 13:58:10 +01:00
|
|
|
<meta name="keywords" content="{{ delimit . "," }}" />
|
2021-04-22 22:07:09 +02:00
|
|
|
{{ end }}
|