blob: de872772994b7e39c75b9914516d53716d9f14140db61e2c68291b84a4e7494c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{- if $.Site.Params.description }}
<meta name="description" content="{{ $.Site.Params.description }}">
{{- end }}
{{- if $.Site.Params.keywords }}
<meta name="keywords" content="{{ $.Site.Params.keywords }}">
{{- end }}
<meta name="theme-color" content="#000">
{{- if .Site.Params.custom_css }}
{{- range .Site.Params.custom_css }}
<link rel="stylesheet" type="text/css" href="{{ relURL . }}">
{{- end }}
{{- else }}
<link rel="stylesheet" type="text/css" href="{{ (resources.Get "css/style.css").RelPermalink }}">
{{- end }}
{{- if $.Site.Params.title }}
<title>{{ .Title }}</title>
{{- end }}
</head>
|