diff options
Diffstat (limited to 'layouts/partials/header.html')
-rw-r--r-- | layouts/partials/header.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 3f58ad4..e4cb2a1 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -7,7 +7,7 @@ <div class="contain contain--more center"> <a href="{{ .Site.BaseURL }}" class="header__logo"> {{ if .Site.Params.useLogo }} - <img src="{{ .Site.Params.logo }}" alt="{{ .Site.Title }}"> + <img src="{{ relURL .Site.Params.logo }}" alt="{{ .Site.Title }}"> {{ else }} <h1>{{ .Site.Title }}</h1> {{ end }} @@ -19,7 +19,7 @@ <div class="contain"> <a href="{{ .Site.BaseURL }}" class="header__logo header__logo--small"> {{ if .Site.Params.useLogo }} - <img src="{{ .Site.Params.logo }}" alt="{{ .Site.Title }}"> + <img src="{{ relURL .Site.Params.logo }}" alt="{{ .Site.Title }}"> {{ else }} <h1>{{ .Site.Title }}</h1> {{ end }} |