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

gitlab.com/maxlefou/hugo.386.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenzo Bivens <git@lorenzobivens.info>2021-02-07 08:39:32 +0300
committerLorenzo Bivens <git@lorenzobivens.info>2021-02-07 08:39:32 +0300
commit2c93cd5b02dc3d97e80ff07d0e66566bf808a650 (patch)
treeac6ed29b15af7104fcbdabcf2c4436254a40a596
parentae54ba2ff5dad87492782a4ec9985bad6d5e445e (diff)
fixes issue on the footer, where variable showhugo is not being interpreted
-rw-r--r--layouts/partials/copyright.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/copyright.html b/layouts/partials/copyright.html
index 7a83dfe..ad5e23a 100644
--- a/layouts/partials/copyright.html
+++ b/layouts/partials/copyright.html
@@ -10,6 +10,6 @@
{{ with .Site.Params.Copyright.Suffix }}
| {{ . | markdownify }}
{{end}}
-{{ if isset .Site.Params "showhugo" }}
+{{ if .Site.Params.showhugo }}
| {{ i18n "builton" }} <a href="//gohugo.io" target="_blank">Hugo</a>
-{{ end }} \ No newline at end of file
+{{ end }}