From e2bc011b9466abd1d72c1cf95a3f0e0f19982557 Mon Sep 17 00:00:00 2001 From: TheGroundZero <2406013+TheGroundZero@users.noreply.github.com> Date: Wed, 4 Sep 2024 06:59:20 +0000 Subject: [PATCH] Fix #484 Update `.Site.DisqusShortname` to `.Site.Config.Services.Disqus.Shortname` --- layouts/posts/single.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/posts/single.html b/layouts/posts/single.html index cc65058..3943de2 100644 --- a/layouts/posts/single.html +++ b/layouts/posts/single.html @@ -122,7 +122,7 @@ {{ partial "pagination-single.html" . }} - {{ if .Site.DisqusShortname }} + {{ if .Site.Config.Services.Disqus.Shortname }} {{ if not (eq .Params.Comments "false") }}
{{ template "_internal/disqus.html" . }}