disqus.html 394 B

12345678910111213
  1. <div id="disqus-container">
  2. {{ $ctx := . }}
  3. {{ with .Site.DisqusShortname }}
  4. <button id="disqus-button" onclick="showComments()">Show comments</button>
  5. <div id="disqus-comments">
  6. {{ if eq . "yourdiscussshortname" }}
  7. <p>Disqus comments are disabled.</p>
  8. {{ else }}
  9. {{ template "_internal/disqus.html" $ctx }}
  10. {{ end }}
  11. </div>
  12. {{ end }}
  13. </div>