Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/aerohub/hugo-identity-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyril Ruel <cyril.ruel@gmail.com>2017-08-17 23:11:52 +0300
committerCyril Ruel <cyril.ruel@gmail.com>2017-08-17 23:11:52 +0300
commit9971fe7234ddffb511ad03fa0d9149b43915dbd6 (patch)
tree74a2004782f41c96d5fb2ef5bc5ee13708e717a9
parent41ceea8e7b980d0c130ce015c6cb27bead584b39 (diff)
Remove duplicate title tag in header
The HTML tag <title> appears twice in the generated HTML page.
-rw-r--r--layouts/partials/header.html1
1 files changed, 0 insertions, 1 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 6c84fae..cc8441c 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -5,7 +5,6 @@
<meta name="description" content="{{ with .Site.Params.description }}{{ . }}{{ end }}">
<meta name="author" content="{{ with .Site.Params.name }}{{ . }}{{ end }}">
{{ .Hugo.Generator }}
- <title>{{ .Site.Title }}</title>
{{ if .Site.Params.favicon_ico }}
<link rel="icon" href="/images/icons/{{ .Site.Params.favicon_ico }}" type="image/x-icon" {{ if .Site.Params.favicon_ico_sizes }}sizes="{{ .Site.Params.favicon_ico_sizes }}"{{ end }} />
{{ end }}