Update footer configuration and template

- Renamed `footerThemeName` to `footerHideThemeName` in `hugo.toml.example`
 - Updated conditional logic in `footer.html` to reflect the new parameter name
This commit is contained in:
Lei, HUANG
2024-09-30 10:35:18 -07:00
parent c5330915ea
commit b7def36e8c
2 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ expiryDate = ["expiryDate"]
#homeSubtitle = "CHANGE ME HOME SUBTITLE"
footerCopyright = "CHANGE ME FOOTER COPYRIGHT"
# Whether to show a tribute to hugo and hermit-v2 theme
footerThemeName = true
footerHideThemeName = false
# bgImg = ""
# gitUrl = "https://github.com/1bl4z3r/hermit-V2/tree/staging"

View File

@ -2,7 +2,7 @@
<p>
&copy; {{ now.Format "2006" }} <a href="{{ .Site.BaseURL }}">{{ .Site.Params.author.name }}</a>
&#183; {{ .Site.Params.footerCopyright | safeHTML }}
{{- if .Site.Params.footerThemeName -}}
{{- if not .Site.Params.footerHideThemeName -}}
&#183; Made with <a href="https://gohugo.io/" target="_blank" rel="noopener">Hugo</a>
&#183; Theme <a href="https://github.com/1bl4z3r/hermit-V2" target="_blank" rel="noopener">Hermit-V2</a>
{{- end -}}