diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-11-17 17:10:16 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-11-17 17:10:16 +0530 |
commit | 00ad5932d73fca7ec60acf5a6fa64bab6fed0224 (patch) | |
tree | 3dda32d83083abc381780060ac3a65de29d303ef /layouts/partials/head.html |
first commit
Diffstat (limited to 'layouts/partials/head.html')
-rw-r--r-- | layouts/partials/head.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html new file mode 100644 index 0000000..b0ea134 --- /dev/null +++ b/layouts/partials/head.html @@ -0,0 +1,20 @@ +<head> + <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="{{ .Site.Params.projectTitle }} - {{ .Site.Params.projectDescription }}"> + + <!-- + <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:image" content="{{ .Site.Params.ogImage }}"> + --> + <meta property="og:type" content="website"> + <meta property="og:site_name" content="{{ .Site.Title }}"> + <meta property="og:description" content="{{ .Site.Params.projectTitle }} - {{ .Site.Params.projectDescription }}"> + <meta property="og:url" content="{{ .Permalink }}"> + + <link rel="stylesheet" type="text/css" href="/css/styles.css"> + + <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> |