hexo-theme-keep/layout/_partial/comments/comment.ejs

9 lines
334 B
Plaintext

<div class="comments-container">
<% if (theme.comments.valine.enable && theme.comments.gitalk.enable) { %>
<%- partial('valine') %>
<% } else if (theme.comments.valine.enable) { %>
<%- partial('valine') %>
<% } else if (theme.comments.gitalk.enable) { %>
<%- partial('gitalk') %>
<% } %>
</div>