2019-12-03 11:37:44 +00:00
|
|
|
<% if (!index && theme.leancloud && theme.leancloud.enable){ %>
|
|
|
|
<!-- valine评论 -->
|
|
|
|
<div id="vcomments-box">
|
|
|
|
<div id="vcomments">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="//cdn1.lncld.net/static/js/3.0.4/av-min.js"></script>
|
2019-12-16 15:48:13 +00:00
|
|
|
<script src='https://cdn.jsdelivr.net/npm/valine@1.3.10/dist/Valine.min.js'></script>
|
2019-12-03 11:37:44 +00:00
|
|
|
<script>
|
|
|
|
new Valine({
|
|
|
|
el: '#vcomments',
|
|
|
|
notify: false,
|
2020-01-24 05:02:50 +00:00
|
|
|
verify: '<%- theme.leancloud.verify %>',
|
2019-12-03 11:37:44 +00:00
|
|
|
app_id: '<%- theme.leancloud.app_id %>',
|
|
|
|
app_key: '<%- theme.leancloud.app_key %>',
|
|
|
|
path: window.location.pathname,
|
|
|
|
avatar: '<%- theme.valine.avatar %>',
|
|
|
|
placeholder: '<%- theme.valine.placeholder %>',
|
|
|
|
recordIP: true
|
|
|
|
});
|
|
|
|
const infoEle = document.querySelector('#vcomments .info');
|
|
|
|
if (infoEle && infoEle.childNodes && infoEle.childNodes.length > 0) {
|
|
|
|
infoEle.childNodes.forEach(function (item) {
|
|
|
|
item.parentNode.removeChild(item);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<style>
|
|
|
|
#vcomments-box {
|
|
|
|
padding: 5px 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 800px) {
|
|
|
|
#vcomments-box {
|
|
|
|
padding: 5px 0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#vcomments-box #vcomments {
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.v .vlist .vcard .vh {
|
|
|
|
padding-right: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.v .vlist .vcard {
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<% } %>
|