瀏覽代碼

fix: just include Disqus comment count JS once if enabled

Fix dc2c70e
See #1229
George Cushen 6 年之前
父節點
當前提交
b57c5f87b8
共有 1 個文件被更改,包括 1 次插入2 次删除
  1. 1 2
      layouts/partials/site_js.html

+ 1 - 2
layouts/partials/site_js.html

@@ -125,8 +125,7 @@
     {{ end }}
 
     {{/* Disqus Comment Count JS. */}}
-    {{ $disqus_enabled := eq site.Params.comments.engine 1 | and (index site.Params.comments.commentable .Type) | and (ne .Params.commentable false) | or .Params.commentable }}
-    {{ if and $disqus_enabled (site.Params.comments.disqus.show_count | default true) }}
+    {{ if and (eq site.Params.comments.engine 1) (site.Params.comments.disqus.show_count | default true) }}
     <script id="dsq-count-scr" src="https://{{site.Params.comments.disqus.shortname}}.disqus.com/count.js" async></script>
     {{ end }}