mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-12 14:07:06 +08:00
13 lines
477 B
Plaintext
13 lines
477 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); |