From 95940453e78c8da3248f93cfd03717c9432bee53 Mon Sep 17 00:00:00 2001 From: remeh Date: Mon, 7 Nov 2016 19:33:29 +0100 Subject: [PATCH] layouts: fix refactoring error using get on Param. --- layouts/partials/head_includes.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/layouts/partials/head_includes.html b/layouts/partials/head_includes.html index cd5e1ea..3063ece 100644 --- a/layouts/partials/head_includes.html +++ b/layouts/partials/head_includes.html @@ -10,18 +10,18 @@ -{{ if .Site.Param "HighlightJS" }} +{{ if (.Site.Param "HighlightJS") }} {{ end }} -{{ if eq true .Site.Param "CacheBuster" }} +{{ if eq true (.Site.Param "CacheBuster") }} -{{range .Site.Param "ExtraCssFiles"}} +{{range (.Site.Param "ExtraCssFiles")}} {{end}} @@ -31,7 +31,7 @@ -{{range .Site.Param "ExtraCssFiles"}} +{{range (.Site.Param "ExtraCssFiles")}} {{end}} @@ -39,7 +39,7 @@