diff options
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/partials/head.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 0362712..df0f46a 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -12,6 +12,15 @@ {{ else }} <title>{{ .Title }} - {{ .Site.Title }}</title> {{ end }} +<meta name="author" content="{{if .Params.author }}{{ .Params.author }}{{ else }}{{ .Site.Params.author }}{{ end }}"> +<meta name="description" content="{{if .Params.description }}{{ .Params.description }}{{ else }}{{ .Site.Params.description }}{{ end }}"> +{{ if .Params.tags }} +<meta name="keywords" content="{{ delimit .Params.tags ", " }}"> +{{ end }} + + +{{ template "_internal/opengraph.html" . }} +{{ template "_internal/twitter_cards.html" . }} {{ partial "analytic-google.html" . }} |