blob: 539f8c7f695779e4e28ac0926ca9028ed72ecf32 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{{ with .Site.Params.disqusShortname }}
<div class="post-comment">
<div id="disqus_thread"></div>
<script>
var disqus_config = function () {
this.page.url = "{{ $.Permalink }}";
this.page.identifier = "{{ $.RelPermalink }}";
};
(function () {
var d = document,
s = d.createElement('script');
s.src = 'https://{{ . }}.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
</div>
{{ end }}
|