pelican-mg/templates/disqus_count.html

15 lines
574 B
HTML
Raw Normal View History

2016-01-03 18:30:27 +00:00
{% if DISQUS_SITENAME %}
2014-12-29 22:08:56 +00:00
<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>
2017-11-30 02:49:39 +00:00
{% endif %}