From 2c93cd5b02dc3d97e80ff07d0e66566bf808a650 Mon Sep 17 00:00:00 2001 From: Lorenzo Bivens Date: Sat, 6 Feb 2021 21:39:32 -0800 Subject: fixes issue on the footer, where variable showhugo is not being interpreted --- layouts/partials/copyright.html | 4 ++-- 1 file 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" }} Hugo -{{ end }} \ No newline at end of file +{{ end }} -- cgit v1.2.3