[Fix] Link to home in head partial.

Link was pointing to / instead of using .Site.BaseURL.
This commit is contained in:
Andre Restivo 2019-11-02 17:06:32 +00:00
parent a26dd658b8
commit 16758f957c
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<div class="header">
<h1 class="site-title"><a href="/">{{ .Site.Title }}</a></h1>
<h1 class="site-title"><a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a></h1>
<div class="site-description">
{{- if isset .Site.Params "subtitle" -}}
<h2>{{ .Site.Params.Subtitle | markdownify }}</h2>