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

11 lines
367 B
Plaintext
Raw Normal View History

2020-04-14 21:18:37 +08:00
<div class="comments-container">
<div id="comment-anchor"></div>
2020-10-29 15:42:58 +08:00
<% if (theme.comment.valine.enable && theme.comment.gitalk.enable) { %>
2020-04-14 21:18:37 +08:00
<%- partial('valine') %>
2020-10-29 15:42:58 +08:00
<% } else if (theme.comment.valine.enable) { %>
2020-04-14 21:18:37 +08:00
<%- partial('valine') %>
2020-10-29 15:42:58 +08:00
<% } else if (theme.comment.gitalk.enable) { %>
2020-04-14 21:18:37 +08:00
<%- partial('gitalk') %>
<% } %>
</div>