summaryrefslogtreecommitdiff
path: root/themes/new_theme/layouts/partials/comments-disqus.html
blob: 7af75f044f37ca2e9f986947cb567e72d5fb0151 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{{ if (not .Params.disable_comments) }}
<div id="disqus_thread"></div>

<script src="/js/jquery.js" type="text/javascript"></script>

<script type="text/javascript">

var disqus_config = function () {
    this.page.url = '{{ .Permalink }}';
    this.page.identifier = '{{ .Site.Params.DisqusShortname }}_{{ .UniqueID }}';
};

(function() {
    // Don't ever inject Disqus on localhost--it creates unwanted
    // discussions from 'localhost:1313' on your Disqus account...
    if (window.location.hostname == "localhost")
        return;

    var d = document, s = d.createElement('script');
    
    s.src = 'https://wwwandreasbaumanncc.disqus.com/embed.js';
    
    s.setAttribute('data-timestamp', +new Date());
    (d.head || d.body).appendChild(s);

alert( disqus_config );
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com/" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
{{ end }}