feat: configurable header title

This commit is contained in:
Eric Murphy 2022-11-26 20:48:14 -05:00
parent ec5ee7eeaa
commit a9a9fd1d56
1 changed files with 7 additions and 1 deletions

View File

@ -9,7 +9,13 @@
align-items:center align-items:center
"> ">
<div> <div>
<a href="/" class="mr-3 font:extralight">{{ .Site.Title }}</a> <a href="/" class="mr-3 font:extralight">
{{ if not .Site.Params.HeaderTitle }}
{{ .Site.Title }}
{{ else }}
{{ .Site.Params.HeaderTitle }}
{{ end }}
</a>
</div> </div>
<div class="ml:auto"> <div class="ml:auto">