hexo-theme-keep/layout/_partial/comments/valine.ejs

23 lines
817 B
Plaintext
Raw Normal View History

2020-04-14 21:18:37 +08:00
<% if(
theme.comments.valine.enable
&& theme.comments.valine.appid
&& theme.comments.valine.appkey
) { %>
2020-04-01 12:09:06 +08:00
<div class="valine-container">
<script src='//unpkg.com/valine/dist/Valine.min.js'></script>
<div id="vcomments"></div>
<script>
new Valine({
el: '#vcomments',
appId: '<%= theme.comments.valine.appid %>',
appKey: '<%= theme.comments.valine.appkey %>',
notify: '<%= theme.comments.valine.notify %>',
verify: '<%= theme.comments.valine.verify %>',
2020-04-01 12:09:06 +08:00
avatar: 'wavatar',
placeholder: '<%= theme.comments.valine.placeholder %>',
2020-04-14 21:18:37 +08:00
lang: '<%= config.language %>'.toLowerCase()
2020-04-01 12:09:06 +08:00
})
</script>
</div>
<% } %>