Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/damiencaselli/paperback.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Koch <alex@meersau.de>2017-12-29 14:43:47 +0300
committerAlexander Koch <alex@meersau.de>2017-12-29 14:43:47 +0300
commit1dcc1f521d47f88a8997d97f65a989c78a89eab0 (patch)
tree58ef26eee86824f5e1327532ae6e0fff8a3fcf73
parentfffb88604a307f5ae4cc94cd92cf8cf0511fcde1 (diff)
changed tagline to lowercase
Hugo docs notes that all site-level configuration keys are stored lowercase. https://gohugo.io/functions/isset/#readout
-rw-r--r--layouts/partials/header.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 64fe71b..d59c813 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -5,7 +5,7 @@
<time datetime="{{ .Date }}">{{ dateFormat "2006/01/02" .Date }}</time>
{{ end }}
- {{ if and .IsHome (isset .Site.Params "Tagline") }}
+ {{ if and .IsHome (isset .Site.Params "tagline") }}
<p>{{ .Site.Params.Tagline }}</p>
{{ end }}
</header>