Files
hexo-theme-butterfly/layout/includes/comments/disqus.pug
2019-06-04 22:37:36 +08:00

15 lines
598 B
Plaintext

if theme.disqus.enable
#disqus_thread
script.
var unused = null;
var disqus_config = function () {
this.page.url = '!{ page.permalink }';
this.page.identifier = '!{ page.path }';
this.page.title = '!{ page.title }';
}
var d = document, s = d.createElement('script');
s.src = "https://" + '!{theme.disqus.shortname}' +".disqus.com/embed.js";
s.setAttribute('data-timestamp', '' + +new Date());
(d.head || d.body).appendChild(s);
if theme.disqus.count
script#dsq-count-scr(src="https://" + theme.disqus.shortname + ".disqus.com/count.js" async)