From 9199d37be2542b1b15088978fc4e3951c05b8af3 Mon Sep 17 00:00:00 2001 From: Joel Pettersson Date: Sun, 14 Aug 2022 14:36:51 -0700 Subject: Fix "View All Services" button config conditional Previously, the button would be shown if and only if `show_services_button` was set to `false`. This inverts the conditional. NOTE: This change will potentially break existing sites. --- layouts/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/index.html b/layouts/index.html index 8dcae98..6fa2a0d 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -31,7 +31,7 @@ {{ end }} - {{ if not .Site.Params.homepage.show_services_button }} + {{ if .Site.Params.homepage.show_services_button }}
View All Services -- cgit v1.2.3