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

22 lines
602 B
Plaintext
Raw Normal View History

2021-01-06 23:53:17 +08:00
<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>
2020-04-02 22:07:55 +08:00
</li>
<% } %>
<!-- go comment -->
2021-01-15 16:18:02 +08:00
<% if (
theme.comment.valine.enable
|| theme.comment.gitalk.enable
|| theme.comment.twikoo.enable
) { %>
<li class="go-comment">
<i class="fas fa-comment"></i>
2020-04-15 22:30:24 +08:00
</li>
<% } %>
</ul>
</div>