这几天突然想给blog加一个评论功能 但是无论按照多说官方的教程还是google出来的方式
都没有办法实现,想请教下各位是怎么配置的
我用的主题是:NexT 没有comment.ejs
下面是我对article.ejs的修改
<% if (page.comments){ %>
<section id="comments">
<!-- 多说评论框 start -->
<div class="ds-thread" data-thread-key="<%= page.path %>" data-title="<%= page.title %>" data-url="<%= page.permalink %>"></div>
<!-- 多说评论框 end -->
<!-- 多说公共JS代码 start (一个网页只需插入一次) -->
<script type="text/javascript">
var duoshuoQuery = {short_name:'<%= config.duoshuo_shortname %>'};
(function() {
var ds = document.createElement('script');
ds.type = 'text/javascript';ds.async = true;
ds.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//static.duoshuo.com/embed.js';
ds.charset = 'UTF-8';
(document.getElementsByTagName('head')[0]
|| document.getElementsByTagName('body')[0]).appendChild(ds);
})();
</script>
<!-- 多说公共JS代码 end -->
</section>
<% } %>
1
JingXiao 2015-03-20 11:47:58 +08:00
````
<% if (!index && post.comments){ %> <section id="comments"> <!-- Duoshuo Comment BEGIN --> <div class="ds-thread" data-thread-key="<%= post.layout %>-<%= post.slug %>" data-title="<%= post.title %>" data-url="<%- post.permalink %>"></div> <script type="text/javascript"> var duoshuoQuery = {short_name:"wangjingxiao"}; (function() { var ds = document.createElement('script'); ds.type = 'text/javascript';ds.async = true; ds.src = 'http://static.duoshuo.com/embed.js'; ds.charset = 'UTF-8'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ds); })(); </script> <!-- Duoshuo Comment END --> </section> <% } %> ```` 我用的是landscape 好像也没找到comment.ejs,上述是我的article.ejs的多说配置,供参考 |
2
wuhuaji 2015-03-20 12:02:54 +08:00 1
我用的是pacman这个主题,貌似默认就有多说了,没有折腾过。
不过楼主你可以考虑一下这个主题 :) |
4
IIssNan 2015-03-20 12:45:40 +08:00 1
只要在站点的 `_config.yml` (主题的 `_config.yml` 也可以)中添加多说的配置就可以:
``` duoshuo_shortname: your-duoshuo-shortname ``` |
5
JingXiao 2015-03-20 12:54:08 +08:00
哎 原来 V2ex 回复不支持markdown的么?
|
6
Bensendbs OP @IIssNan 我是这样添加的
duoshuo_shortname: santong.duoshuo.com 额 不会是要duoshuo_shortname: santong-duoshuo-com。。。吧 |