From 8edca610b24618a1c4260959020a225869a43cda Mon Sep 17 00:00:00 2001 From: Huy Tran Date: Thu, 6 Dec 2018 10:48:12 +1100 Subject: [PATCH] fix duplicate post title as per #54 --- layouts/partials/header/meta.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/header/meta.html b/layouts/partials/header/meta.html index b48b689..f9843cf 100644 --- a/layouts/partials/header/meta.html +++ b/layouts/partials/header/meta.html @@ -7,7 +7,7 @@ {{ if .IsHome }} {{ $.Scratch.Set "theTitle" .Site.Title }} {{else}} - {{ $.Scratch.Add "theTitle" .Title}} + {{ $.Scratch.Set "theTitle" .Title}} {{ $.Scratch.Add "theTitle" " • "}} {{ $.Scratch.Add "theTitle" .Site.Title}} {{ end }}