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

11 lines
363 B
Plaintext
Raw Normal View History

2020-04-14 21:18:37 +08:00
<div class="comments-container">
<div id="comment-anchor"></div>
2021-01-15 16:57:20 +08:00
<% if (theme.comment.valine.enable === true) { %>
2020-04-14 21:18:37 +08:00
<%- partial('valine') %>
2021-01-15 16:18:02 +08:00
<% } else if (theme.comment.gitalk.enable === true) { %>
2020-04-14 21:18:37 +08:00
<%- partial('gitalk') %>
2021-01-15 16:18:02 +08:00
<% } else if (theme.comment.twikoo.enable === true) { %>
<%- partial('twikoo') %>
2020-04-14 21:18:37 +08:00
<% } %>
</div>