flex/templates/partial/disqus.html

21 lines
554 B
HTML
Raw Normal View History

2015-07-19 02:04:01 +02:00
{% if DISQUS_SITENAME %}
2017-04-22 08:41:39 +02:00
<!-- Disqus -->
2015-07-19 02:04:01 +02:00
<div id="disqus_thread"></div>
<script>
var disqus_config = function(){
this.page.url = '{{DISQUS_PREFIX}}' + document.location.pathname;
};
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = '//' + '{{ DISQUS_SITENAME }}' + '.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
2015-07-19 02:04:01 +02:00
</script>
<noscript>
{{ _('Please enable JavaScript to view comments.') }}
</noscript>
2017-04-22 08:41:39 +02:00
<!-- End Disqus -->
2015-07-19 02:04:01 +02:00
{% endif %}