aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/includes/disqus_script.html
blob: 02570b38f488e3c0319d735cac8cedc4367e9733 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% if DISQUS_SITENAME %}
    <!-- Disqus -->
    <script type="text/javascript">
        /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
        var disqus_shortname = '{{ DISQUS_SITENAME }}'; // required: replace example with your forum shortname

        /* * * DON'T EDIT BELOW THIS LINE * * */
        (function () {
            var s = document.createElement('script');
            s.async = true;
            s.type = 'text/javascript';
            s.src = '//' + disqus_shortname + '.disqus.com/count.js';
            (document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
        }());
    </script>
    <!-- End Disqus Code -->
{% endif %}