diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-08-27 13:05:45 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-08-27 13:05:45 +0530 |
commit | 92e5270060c97325b610d8877ee28200c4588682 (patch) | |
tree | becb4619b11dfa6cbbb33a238a0a336694a3bce5 /layouts/partials/head.html | |
parent | 3cce4fcf48265ae0f029c6f8648ec9ada098bc18 (diff) |
added opengraph tags
Diffstat (limited to 'layouts/partials/head.html')
-rw-r--r-- | layouts/partials/head.html | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 82e2925..3dd4906 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -2,13 +2,13 @@ <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <meta name="author" content={{ .Site.Author.name }}> - <meta name="robots" content="index,follow"> - <meta name="description" content="{{ .Title }}"> + <meta name="description" content="{{ if .Params.description }}{{ .Params.description }}{{ else }}{{ .Site.Params.siteDescription }}{{ end }}"> - <meta property="og:type" content="website"> - <meta property="og:title" content="{{ if .Title }}{{ .Title }}{{ else }}{{ .Site.Title }}{{ end }}"> + <meta property="og:type" content="{{if .IsPage}}article{{ else }}website{{ end }}"> + <meta property="og:title" content="{{ if .Title }}{{ .Title }}{{ if eq .Section "blog" }}{{ if not .IsPage }} Blog Posts{{ end }}{{ end }} - {{if .Site.Params.domain }}{{ .Site.Params.domain }}{{ else }}{{ .Site.Title }}{{ end }}{{ else }}{{ .Site.Title }}{{ end }}"> <meta property="og:site_name" content="{{ .Site.Title }}"> + <meta property="og:description" content="{{ if .Params.description }}{{ .Params.description }}{{ else }}{{ if .Title }}{{ .Title }}{{ if eq .Section "blog" }}{{ if not .IsPage }} Blog Posts{{ end }}{{ end }}{{ end }}{{ end }}"> <meta property="og:image" content="{{ .Site.Params.ogImage }}"> <meta property="og:url" content="{{ .Permalink }}"> @@ -20,11 +20,5 @@ <link rel="stylesheet" type="text/css" href="/css/home.css"> {{ end }} - <title> - {{ if .Title }} - {{ .Title }}{{ if eq .Section "blog" }} Blog Posts{{ end }} | {{if .Site.Params.domain }}{{ .Site.Params.domain }}{{ else }}{{ .Site.Title }}{{ end }} - {{ else }} - {{ .Site.Title }} - {{ end }} - </title> + <title>{{ if .Title }}{{ .Title }}{{ if eq .Section "blog" }}{{ if not .IsPage }} Blog Posts{{ end }}{{ end }} | {{if .Site.Params.domain }}{{ .Site.Params.domain }}{{ else }}{{ .Site.Title }}{{ end }}{{ else }}{{ .Site.Title }}{{ end }}</title> </head> |