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

20 lines
603 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">
<i class="fas fa-comments"></i>&nbsp;<%- __('comments') %>
2021-01-19 23:20:27 +08:00
</div>
<% if (theme.comment.enable === true && theme.comment.hasOwnProperty(theme.comment.use)) { %>
<% if (theme.comment.use === 'valine') { %>
<%- partial('valine') %>
<% } else if (theme.comment.use === 'gitalk') { %>
<%- partial('gitalk') %>
<% } else if (theme.comment.use === 'twikoo') { %>
<%- partial('twikoo') %>
<% } %>
2020-04-14 21:18:37 +08:00
<% } %>
</div>