diff options
Diffstat (limited to 'themes/terrassa/layouts/partials/head.html')
-rw-r--r-- | themes/terrassa/layouts/partials/head.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/themes/terrassa/layouts/partials/head.html b/themes/terrassa/layouts/partials/head.html new file mode 100644 index 0000000..a2885d2 --- /dev/null +++ b/themes/terrassa/layouts/partials/head.html @@ -0,0 +1,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>
\ No newline at end of file |