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

18 lines
541 B
Plaintext

<div class="post-tools-container">
<ul class="tools-list">
<!-- TOC aside toggle -->
<% if (theme.toc.enable) { %>
<li class="tools-item toggle-show-toc">
<i class="fas fa-list"></i>
</li>
<% } %>
<!-- go comment -->
<% if (theme.comment.enable === true && theme.comment.hasOwnProperty(theme.comment.use)) { %>
<li class="tools-item go-comment">
<i class="fas fa-comment"></i>
</li>
<% } %>
</ul>
</div>