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

31 lines
619 B
Plaintext
Raw Normal View History

<%- __js([
'js/utils.js',
2020-04-18 17:26:29 +08:00
'js/header-shrink.js',
'js/main.js'
2020-04-18 17:26:29 +08:00
]) %>
2020-04-21 10:47:36 +08:00
<% if (theme.side_tools.enable) { %>
<%- __js('js/dark-light-toggle.js') %>
<% if (theme.back2top.enable) { %>
<%- __js('js/back2top.js') %>
<% } %>
<% } %>
2020-11-13 14:43:22 +08:00
<% if (theme.local_search.enable) { %>
<%- __js('js/local-search.js') %>
<% } %>
2020-04-21 10:47:36 +08:00
<% if (is_post()) { %>
<%- __js('js/left-side-toggle.js') %>
<% if (theme.code_copy.enable ) { %>
<%- __js('js/code-copy.js') %>
2020-04-21 10:47:36 +08:00
<% } %>
2020-04-28 23:20:17 +08:00
<% if (theme.toc.enable) { %>
<%- __js(['js/libs/anime.min.js', 'js/toc.js']) %>
2020-04-21 10:47:36 +08:00
<% } %>
<% } %>