From a9a9fd1d565c1f2570710090e16a2b72723f9312 Mon Sep 17 00:00:00 2001 From: Eric Murphy Date: Sat, 26 Nov 2022 20:48:14 -0500 Subject: [PATCH] feat: configurable header title --- layouts/partials/header.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 6f3b161..62955fb 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -9,7 +9,13 @@ align-items:center ">
- {{ .Site.Title }} + + {{ if not .Site.Params.HeaderTitle }} + {{ .Site.Title }} + {{ else }} + {{ .Site.Params.HeaderTitle }} + {{ end }} +