以前用 hexo
维护网站的时候评论系统用的是多说,虽然 octopress
自带了一个 disqus
评论系统,不过感觉还是没有多说强大。所以这次改版之后也决定用多说。
在 _config.yml
中找到 disqus
配置
# Disqus Commentsdisqus_short_name:disqus_show_comment_count: false
在下面添加
duoshuo_comments: trueduoshuo_short_name: xxxxxx # 多说帐号
在 source/_layouts/post.html
中的 disqus
代码
{% if site.disqus_short_name and page.comments == true %}Comments{% include post/disqus_thread.html %}{% endif %}
下面添加多说的模块
{% if site.duoshuo_short_name and site.duoshuo_comments == true and page.comments == true %}Comments{% include post/duoshuo.html %}{% endif %}
然后创建上面代码提及的新文件 post/duoshuo.html
具体路径是 source/_includes/post/duoshuo.html
<!-- 多说评论框 start --><!-- 多说评论框 end --><!-- 多说公共JS代码 start (一个网页只需插入一次) --><!-- 多说公共JS代码 end -->
data-thread-key
属性,如果不写,控制台会有警告信息。设置成跟 data-title
一样就好。学 disqus
的实现方式,在文章头部也再加个评论按钮。修改 _includes/article.html
文件。
{% if site.disqus_short_name and page.comments != false and post.comments != false and site.disqus_show_comment_count == true %}|Comments{% endif %}
下方添加多说代码部分
{% if site.duoshuo_short_name and page.comments != false and post.comments != false and site.duoshuo_comments == true %}| 评论{% endif %}
基本功能大功告成
在 _config.yml 添加如下配置:
duoshuo_asides: false # 是否显示侧边栏duoshuo_asides_num: 10 # 侧边栏评论显示条目数duoshuo_asides_avatars: 0 # 侧边栏评论是否显示头像duoshuo_asides_time: 0 # 侧边栏评论是否显示时间duoshuo_asides_title: 0 # 侧边栏评论是否显示标题duoshuo_asides_admin: 0 # 侧边栏评论是否显示作者评论duoshuo_asides_length: 18 # 侧边栏评论截取的长度
还需要在侧边栏插件文件夹创建评论代码
{% if site.duoshuo_asides %}Recent Comments{% if index %}<!--多说js加载开始,一个页面只需要加载一次 --><!--多说js加载结束,一个页面只需要加载一次 -->{% endif %}{% endif %}
如果没有评价,不需要显示孤零零的变迁,可以把 duoshuo_asides
设置成 false
。
最后在 _config.yml
的侧边栏数组中添加页面
default_asides: [asides/about.html, asides/recent_posts.html, asides/recent_comments.html, asides/links.html, asides/github.html, asides/delicious.html, asides/pinboard.html, asides/googleplus.html]
我选择在最新文章和链接之间显示最新评论。