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

14 lines
478 B
Plaintext

<div class="comments-container">
<div id="comment-anchor"></div>
<div class="comment-area-title">
<i class="fas fa-comments">&nbsp;<%- __('comments') %></i>
</div>
<% if (theme.comment.valine.enable === true) { %>
<%- partial('valine') %>
<% } else if (theme.comment.gitalk.enable === true) { %>
<%- partial('gitalk') %>
<% } else if (theme.comment.twikoo.enable === true) { %>
<%- partial('twikoo') %>
<% } %>
</div>