hexo-theme-keep/layout/_partial/post-tools.ejs

22 lines
602 B
Plaintext

<div class="post-tools-container">
<ul class="tools-list">
<!-- TOC aside toggle -->
<% if (theme.toc.enable) { %>
<li class="tools-item page-aside-toggle">
<i class="fas fa-outdent"></i>
</li>
<% } %>
<!-- go comment -->
<% if (
theme.comment.valine.enable
|| theme.comment.gitalk.enable
|| theme.comment.twikoo.enable
) { %>
<li class="go-comment">
<i class="fas fa-comment"></i>
</li>
<% } %>
</ul>
</div>