mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-16 20:30:53 +08:00
13 lines
424 B
Plaintext
13 lines
424 B
Plaintext
if theme.gitalk && theme.gitalk.enable
|
|
#gitalk-container
|
|
script.
|
|
var gitalk = new Gitalk({
|
|
clientID: '!{theme.gitalk.client_id}',
|
|
clientSecret: '!{theme.gitalk.client_secret}',
|
|
repo: '!{theme.gitalk.repo}',
|
|
owner: '!{theme.gitalk.owner}',
|
|
admin: '!{theme.gitalk.admin}',
|
|
id: md5(decodeURI(location.pathname)),
|
|
language: '!{lang}'
|
|
})
|
|
gitalk.render('gitalk-container') |