25 lines
791 B
HTML
25 lines
791 B
HTML
{% assign disqus = site.disqus | default:site.disqus_shortname %}
|
|
{% if disqus %}
|
|
<div id="disqus_thread"></div>
|
|
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
|
|
<script>!function(w, d) {
|
|
if (d.getElementById("disqus_thread")) {
|
|
if (w.DISQUS) {
|
|
w.DISQUS.reset({
|
|
reload: true,
|
|
config() {
|
|
this.page.url = w.location.href;
|
|
this.page.title = d.title;
|
|
},
|
|
});
|
|
} else {
|
|
w.disqus_config = function disqusConfig() {
|
|
this.page.url = w.location.href;
|
|
this.page.title = d.title;
|
|
};
|
|
w.loadJSDeferred(d.getElementById("_hrefDisqus").href + '/embed.js');
|
|
}
|
|
}
|
|
}(window, document);</script>
|
|
{% endif %}
|