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

9 lines
334 B
Plaintext
Raw Normal View History

2020-04-14 21:18:37 +08:00
<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>