Feat: A simple and minimalist comment system
This commit is contained in:
parent
4c16804821
commit
c5c22237f0
20
_config.yml
20
_config.yml
@ -101,14 +101,14 @@ layout:
|
|||||||
article_width: 80rem
|
article_width: 80rem
|
||||||
sidebar_width: 8rem
|
sidebar_width: 8rem
|
||||||
|
|
||||||
# 评论:1、Valine(推荐);2、Gitalk
|
# 评论:1、Valine(推荐);2、Gitalk;3、MiniValine
|
||||||
|
|
||||||
# 1、Valine[一款快速、简洁且高效的无后端评论系统](https://github.com/xCss/Valine)
|
# 1、Valine[一款快速、简洁且高效的无后端评论系统](https://github.com/xCss/Valine)
|
||||||
# 启用Valine必须先创建leancloud应用, 获取 id|key 填入即可
|
# 启用Valine必须先创建leancloud应用, 获取 id|key 填入即可
|
||||||
leancloud:
|
leancloud:
|
||||||
enable: true
|
enable: true
|
||||||
app_id: #
|
app_id: # Your leancloud application appid
|
||||||
app_key: #
|
app_key: # Your leancloud application appkey
|
||||||
# Valine配置
|
# Valine配置
|
||||||
valine:
|
valine:
|
||||||
enable: true # 是否启用
|
enable: true # 是否启用
|
||||||
@ -126,6 +126,20 @@ gitalk:
|
|||||||
owner: # GitHub ID
|
owner: # GitHub ID
|
||||||
admin: # GitHub ID
|
admin: # GitHub ID
|
||||||
|
|
||||||
|
# 3、MiniValine
|
||||||
|
# See: https://github.com/MiniValine/MiniValine
|
||||||
|
minivaline:
|
||||||
|
enable: true
|
||||||
|
placeholder: Write a Comment # Comment box placeholder
|
||||||
|
adminEmailMd5: # The MD5 of Admin Email to show Admin Flag.
|
||||||
|
math: true # Support MathJax.
|
||||||
|
md: true # Support Markdown.
|
||||||
|
# MiniValine's display language depends on user's browser or system environment
|
||||||
|
# If you want everyone visiting your site to see a uniform language, you can set a force language value
|
||||||
|
# Available values: en | zh-CN | (and many more)
|
||||||
|
# More i18n info: https://github.com/MiniValine/minivaline-i18n
|
||||||
|
lang:
|
||||||
|
|
||||||
# GitHub Ribbons-封面右上角的forkme,换样式直接在source/images目录下替换forkme图片
|
# GitHub Ribbons-封面右上角的forkme,换样式直接在source/images目录下替换forkme图片
|
||||||
github:
|
github:
|
||||||
# (关闭请设置为false)
|
# (关闭请设置为false)
|
||||||
|
@ -82,4 +82,8 @@
|
|||||||
<%- partial('post/gitalk') %>
|
<%- partial('post/gitalk') %>
|
||||||
<% } %>
|
<% } %>
|
||||||
|
|
||||||
|
<% if (is_post()) { %>
|
||||||
|
<%- partial('post/minivaline') %>
|
||||||
|
<% } %>
|
||||||
|
|
||||||
</article>
|
</article>
|
49
layout/_partial/post/minivaline.ejs
Normal file
49
layout/_partial/post/minivaline.ejs
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
<% if (!index && theme.leancloud && theme.leancloud.enable){ %>
|
||||||
|
<!-- minivaline评论 -->
|
||||||
|
<div id="vcomments-box">
|
||||||
|
<div id="vcomments">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script src='https://unpkg.com/minivaline/dist/MiniValine.min.js'></script>
|
||||||
|
<script>
|
||||||
|
new MiniValine({
|
||||||
|
el: '#vcomments',
|
||||||
|
appId: '<%- theme.leancloud.app_id %>',
|
||||||
|
appKey: '<%- theme.leancloud.app_key %>',
|
||||||
|
placeholder: '<%- theme.minivaline.placeholder %>',
|
||||||
|
lang: '<%- theme.minivaline.lang %>',
|
||||||
|
adminEmailMd5: '<%- theme.minivaline.adminEmailMd5 %>',
|
||||||
|
math: <%- theme.minivaline.math %>,
|
||||||
|
md: <%- theme.minivaline.md %>
|
||||||
|
});
|
||||||
|
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>
|
||||||
|
<% } %>
|
Loading…
Reference in New Issue
Block a user