20 lines
827 B
Plaintext
Executable File
20 lines
827 B
Plaintext
Executable File
<% if(theme.valine.enable && theme.valine.appid && theme.valine.appkey) { %>
|
|
<div class="valine-container">
|
|
<script src='//unpkg.com/valine/dist/Valine.min.js'></script>
|
|
<!-- <script src='https://unpkg.com/valine@1.3.10/dist/Valine.min.js'></script>-->
|
|
<div id="vcomments"></div>
|
|
<script>
|
|
new Valine({
|
|
el: '#vcomments',
|
|
appId: '<%= theme.valine.appid %>',
|
|
appKey: '<%= theme.valine.appkey %>',
|
|
notify: '<%= theme.valine.notify %>',
|
|
verify: '<%= theme.valine.verify %>',
|
|
avatar: 'wavatar',
|
|
placeholder: '<%= theme.valine.placeholder %>',
|
|
lang: '<%= config.language%>'.toLowerCase()
|
|
})
|
|
</script>
|
|
</div>
|
|
<% } %>
|