blob: a2885d2137a41da97e91ceb4e8ef3e6ba2b5bf71 (
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.0">
<meta name="robots" content="index, follow">
<meta name="googlebot" content="index, follow, noarchive">
<title>{{ .Site.Title }} - {{ .Title }}</title>
<link rel="icon" href="{{ $.Site.BaseURL }}{{ $.Site.Params.favicon }}">
<meta name="description" content="{{ $.Site.Params.description }}">
{{ .Hugo.Generator }}
{{ if .Site.GoogleAnalytics }}
{{ template "_internal/google_analytics.html" . }}
{{ end }}
{{ template "_internal/twitter_cards.html" . }}
{{ template "_internal/opengraph.html" . }}
<!-- CSS -->
{{ partial "styles.html" . }}
</head>
|