2019-03-05 21:59:47 +01:00
|
|
|
<div id="disqus-container">
|
|
|
|
{{ with .Site.DisqusShortname }}
|
|
|
|
<button id="disqus-button" onclick="showComments()">Show comments</button>
|
|
|
|
<div id="disqus-comments">
|
2019-03-07 21:13:56 +01:00
|
|
|
{{ $isDummyName := eq . "yourdiscussshortname" }}
|
|
|
|
{{ $isServer := $.Site.IsServer }}
|
|
|
|
{{ if or $isDummyName $isServer }}
|
2019-03-21 16:53:25 +01:00
|
|
|
<p><em>Disqus comments are disabled.</em></p>
|
2019-03-07 21:13:56 +01:00
|
|
|
<script type="application/javascript">
|
|
|
|
function showComments() {
|
|
|
|
{{ partial "disqus-js-common.js" . | safeJS }}
|
|
|
|
}
|
|
|
|
</script>
|
2019-03-05 21:59:47 +01:00
|
|
|
{{ else }}
|
2019-03-07 21:13:56 +01:00
|
|
|
<div id="disqus_thread">
|
|
|
|
</div>
|
|
|
|
<script type="application/javascript">
|
|
|
|
function showComments() {
|
|
|
|
{{ partial "disqus-js-main.js" . | safeJS }}
|
|
|
|
{{ partial "disqus-js-common.js" . | safeJS }}
|
|
|
|
}
|
|
|
|
</script>
|
2019-03-05 21:59:47 +01:00
|
|
|
{{ end }}
|
2019-03-07 21:13:56 +01:00
|
|
|
<noscript>Enable JavaScript to view Disqus comments.</noscript>
|
2019-03-05 21:59:47 +01:00
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|