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

14 lines
478 B
Plaintext
Raw Normal View History

2020-04-14 21:18:37 +08:00
<div class="comments-container">
2021-01-25 10:37:39 +08:00
<div id="comment-anchor"></div>
<div class="comment-area-title">
2021-01-21 20:16:37 +08:00
<i class="fas fa-comments">&nbsp;<%- __('comments') %></i>
2021-01-19 23:20:27 +08:00
</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>