index.ejs 342 B

1234567891011
  1. <% if (post.comments) { %>
  2. <section id="comments">
  3. <% if (theme.comment.disqus) { %>
  4. <%- partial('comment/disqus') %>
  5. <% } else if (theme.comment.duoshuo) { %>
  6. <%- partial('comment/duoshuo') %>
  7. <% } else if (theme.comment.youyan) { %>
  8. <%- partial('comment/youyan') %>
  9. <% } %>
  10. </section>
  11. <% } %>