summaryrefslogtreecommitdiff
path: root/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'layouts')
-rw-r--r--layouts/_default/baseof.html2
-rw-r--r--layouts/partials/head.html16
2 files changed, 6 insertions, 12 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 9bc0b22..ad5c70f 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -1,5 +1,5 @@
<!DOCTYPE html>
-<html>
+<html lang="{{ .Site.LanguageCode }}">
{{- partial "head.html" . -}}
<body>
{{ if ne .Kind "home" }}
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>