From 0b494a57824af8d2130244a20d907c5550300ffc Mon Sep 17 00:00:00 2001 From: Nishanth Shanmugham Date: Sat, 3 Dec 2016 03:01:56 -0600 Subject: [PATCH] cachebuster: wrong way around Fixes #32. --- layouts/partials/head_includes.html | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/layouts/partials/head_includes.html b/layouts/partials/head_includes.html index 55c4864..390cfe9 100644 --- a/layouts/partials/head_includes.html +++ b/layouts/partials/head_includes.html @@ -15,17 +15,7 @@ {{ end }} -{{ if eq true .Site.Params.cachebuster }} - - - - - -{{range .Site.Params.extracssfiles}} - -{{end}} - -{{ else }} +{{ if .Site.Params.cachebuster }} @@ -35,6 +25,16 @@ {{end}} +{{ else }} + + + + + +{{range .Site.Params.extracssfiles}} + +{{end}} + {{ end }}