hexo-theme-amane/layout/comment/index.ejs

17 lines
940 B
Plaintext
Raw Normal View History

2016-02-02 16:19:44 +00:00
<% if (post.comments) { %>
<% if (theme.comment.disqus) { %>
<section id="comments"><%- partial('comment/disqus') %></section>
<% } else if (theme.comment.duoshuo) { %>
<section id="comments"><%- partial('comment/duoshuo') %></section>
<% } else if (theme.comment.youyan) { %>
<section id="comments"><%- partial('comment/youyan') %></section>
<% } else if (theme.comment.facebook) { %>
<section id="comments"><%- partial('comment/facebook') %></section>
<% } else if (theme.comment.isso) { %>
<section id="comments"><%- partial('comment/isso') %></section>
2017-04-12 15:14:25 +00:00
<% } else if (theme.comment.changyan && theme.comment.changyan.appid && theme.comment.changyan.conf) { %>
<section id="comments"><%- partial('comment/changyan') %></section>
2017-06-01 08:26:26 +00:00
<% } else if (theme.comment.gitment) { %>
<section id="comments"><%- partial('comment/gitment') %></section>
<% } %>
2016-02-02 16:19:44 +00:00
<% } %>