hexo-theme-ayer/layout/_partial/post/gitalk.ejs

22 lines
859 B
JavaScript
Raw Normal View History

2020-11-27 07:50:58 +00:00
<% if (theme.gitalk.enable && post.comments) { %>
2019-12-16 15:48:13 +00:00
<div class="gitalk" id="gitalk-container"></div>
2022-02-24 03:21:40 +00:00
<%- css('https://cdn.staticfile.org/gitalk/1.7.2/gitalk.min.css') %>
<%- js('https://cdn.staticfile.org/gitalk/1.7.2/gitalk.min.js') %>
<%- js('https://cdn.staticfile.org/blueimp-md5/2.19.0/js/md5.min.js') %>
2019-12-16 15:48:13 +00:00
<script type="text/javascript">
var gitalk = new Gitalk({
clientID: '<%- theme.gitalk.clientID %>',
clientSecret: '<%- theme.gitalk.clientSecret %>',
repo: '<%- theme.gitalk.repo %>',
owner: '<%- theme.gitalk.owner %>',
admin: ['<%- theme.gitalk.admin %>'],
// id: location.pathname, // Ensure uniqueness and length less than 50
id: md5(location.pathname),
distractionFreeMode: false, // Facebook-like distraction free mode
pagerDirection: 'last'
})
2019-12-03 11:37:44 +00:00
gitalk.render('gitalk-container')
2019-12-16 15:48:13 +00:00
</script>
<% } %>