diff --git a/layouts/_default/single.html b/layouts/_default/single.html index beee7b7..72569ba 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -15,14 +15,17 @@ {{- $.Scratch.Set "isDisqus" true -}} - {{- if and (isset .Params "disqus") (eq .Params.disabledisqus false) -}} - {{- $.Scratch.Set "isDisqus" false -}} - {{- end -}} {{- if and (isset .Params "type") (in (.Site.Params.disableDisqusTypes | default (slice "page")) .Params.type) -}} {{- $.Scratch.Set "isDisqus" false -}} {{- end -}} + {{- if and (isset .Params "disqus") (eq .Params.disqus false) -}} + {{- $.Scratch.Set "isDisqus" false -}} + {{- else if and (isset .Params "disqus") (eq .Params.disqus true) -}} + {{- $.Scratch.Set "isDisqus" true -}} + {{- end -}} + {{- if eq ($.Scratch.Get "isDisqus") true -}} {{- partial "disqus.html" . -}} {{- end -}}