From 16758f957c3a9e8b308febbe108ed4d8a50709ce Mon Sep 17 00:00:00 2001 From: Andre Restivo Date: Sat, 2 Nov 2019 17:06:32 +0000 Subject: [PATCH] [Fix] Link to home in head partial. Link was pointing to / instead of using .Site.BaseURL. --- layouts/partials/head.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/head.html b/layouts/partials/head.html index d4b1427..2467747 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -1,5 +1,5 @@
-

{{ .Site.Title }}

+

{{ .Site.Title }}

{{- if isset .Site.Params "subtitle" -}}

{{ .Site.Params.Subtitle | markdownify }}