1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| <% if (page.comment){ %> <section id="comment"> <h2 class="title"><%= __(‘comment‘) %></h2>
<% if(theme.duoshuo_shortname) { %> <!-- 多说评论框 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:"duoshuo_shortname"}; <!-- 替换这里的duoshuo_shortname为前面注册的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.unstable.js‘; ds.charset = ‘UTF-8‘; (document.getElementsByTagName(‘head‘)[0] || document.getElementsByTagName(‘body‘)[0]).appendChild(ds); })(); </script> <!-- 多说公共JS代码 end --> <% } else if(config.disqus_shortname) { %> <div id="disqus_thread"> <noscript>Please enable JavaScript to view the <a href="//disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> </div> <% } %> </section> <% } %>
|