diff options
Diffstat (limited to 'layouts/partials/header.html')
-rw-r--r-- | layouts/partials/header.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html index d81055e..57cf431 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -1,5 +1,11 @@ <div class="logo-wrapper"> - <a href="{{ "/" | relURL }}" class="logo">{{ .Site.Title }}</a> + <a href="{{ "/" | relURL }}" class="logo"> + {{- if .Site.Params.logoTitle -}} + {{ .Site.Params.logoTitle }} + {{- else -}} + {{ .Site.Title }} + {{- end -}} + </a> </div> <nav class="site-navbar"> |