为博客添加staticman评论组件
工具选择
其实mistake主题中给出了很多的选项:
Name | Comment Provider |
---|---|
disqus | Disqus |
discourse | Discourse |
Facebook Comments | |
google-plus | Google+ Comments |
staticman_v2 | Staticman v2 |
staticman | Staticman v1 (deprecated) |
custom | Other |
由于蛤的力量,disqus国内访问不到
discourse太过庞大了,毕竟是以论坛的目标的
facebook同第一条
google-plus同第一条
staticman居然成了最终选项 <@_@>
staticman 官网
手册 英语大拿请自行阅读,不想看的请掠过,后面有神翻译
staticman 使用
一、将Staticman添加项目仓库
打开github中需要添加的项目,进入设置页面
上图
搜索后点击右边的 Add Collaborator按钮,稍微等一下,上面就多了这个应用
然后访问这个地址(注意替换花括号中的内容):https://api.staticman.net/v2/connect/{your GitHub username}/{your repository name}
成功会得到一个ok,真的只有ok,在左上角,眼神不好的童鞋别看漏了
二、mistake主题中的 staticman 配置
文档乱七八糟,于是我用find大法,直接找到了staticman主题中的comment.html文件
可以跳过阅读start
文件内容如下(可跳过阅读):
{\% when "staticman_v2" \%}
<section id="static-comments">
{\% if site.repository and site.staticman.branch \%}
<!-- Start static comments -->
<div class="js-comments">
{\% if site.data.comments[page.slug] \%}
<h4 class="page__comments-title">评论</h4>
{\% assign comments = site.data.comments[page.slug] | sort \%}
{\% for comment in comments \%}
{\% assign email = comment[1].email \%}
{\% assign name = comment[1].name \%}
{\% assign url = comment[1].url \%}
{\% assign date = comment[1].date \%}
{\% assign message = comment[1].message \%}
{\% include comment.html index=forloop.index email=email name=name url=url date=date message=message \%}
{\% endfor \%}
{\% endif \%}
</div>
<!-- End static comments -->
<!-- Start new comment form -->
...
<!-- End new comment form -->
{\% if site.reCaptcha.siteKey \%}<script async src="https://www.google.com/recaptcha/api.js"></script>{\% endif \%}
{\% endif \%}
</section>
引入这个文件的地方在single.html这种布局文件
{\% if jekyll.environment == 'production' and site.comments.provider and page.comments \%}
{\% include comments.html \%}
{\% endif \%}
可以跳过阅读end
上面的文件给了海量信息:
-
jekyll的运行环境为线上模式–production
-
_config.yml的以下配置必须有:
-
site.comments.provider
-
page.comments
-
site.repository
-
site.staticman.branch
-
-
示例文件:
强调一下,这2个文件都必须要有,否则提交评论的时候会报错,报错的解决方法请到官方的issue中搜索,大部分给出了解决方案
4.为文章开启评论功能 配置文章的布局(Layouts)
comments: true
eg:
---
title: "为博客添加staticman评论组件"
categories: ruby
tags: jekyll
comments: true
---
评论
darkwind
评论示例
邮箱用于头像展示
头像依赖于Gravatars
评论需要审核,不会立刻展示在文章下方
可以填上自己的主页,互相交流
Leo
comment test
test
aaa
com test
Ute
I couldn’t refrain from commenting. Well written!
111
不错,如何显示头像呢?
darkwind
头像显示需要在gravatar使用相同的邮箱地址进行注册并上传
AlexeyRaips
Hello! So where i can download xevil??
Can’t find any URL. Thank you!
alexey1381.Raips@gmail.com
darkwind
xevil http://xevil.net/zh/ Do you mean this?But i don’t know why you need that
留下评论
您的电子邮箱地址并不会被展示。请填写标记为必须的字段。 *