83 lines
2.3 KiB
Plaintext
83 lines
2.3 KiB
Plaintext
<%- js('/js/jquery-2.0.3.min') %>
|
|
<%- js('/js/lazyload.min') %>
|
|
<!-- Subtitle -->
|
|
<% if (theme.subtitle.enable){ %>
|
|
<script>
|
|
try {
|
|
var typed = new Typed("#subtitle", {
|
|
strings: ['<%= theme.subtitle.text %>', '<%= theme.subtitle.text2 %>', '<%= theme.subtitle.text3 %>'],
|
|
startDelay: <%= theme.subtitle.startDelay %>,
|
|
typeSpeed: <%= theme.subtitle.typeSpeed %>,
|
|
loop: <%= theme.subtitle.loop %>,
|
|
backSpeed: <%= theme.subtitle.backSpeed %>,
|
|
showCursor: <%= theme.subtitle.showCursor %>
|
|
});
|
|
} catch (err) {
|
|
console.log(err)
|
|
}
|
|
</script>
|
|
<% } %>
|
|
<!-- Tocbot -->
|
|
<% if (theme.toc && is_post() && !page.no_toc){ %>
|
|
<%- js('/js/tocbot.min') %>
|
|
<script>
|
|
tocbot.init({
|
|
tocSelector: '.tocbot',
|
|
contentSelector: '.article-entry',
|
|
headingSelector: 'h1, h2, h3, h4, h5, h6',
|
|
hasInnerContainers: true,
|
|
scrollSmooth: true,
|
|
scrollContainer: 'main',
|
|
positionFixedSelector: '.tocbot',
|
|
positionFixedClass: 'is-position-fixed',
|
|
fixedSidebarOffset: 'auto'
|
|
});
|
|
</script>
|
|
<% } %>
|
|
<script src="https://cdn.jsdelivr.net/npm/jquery-modal@0.9.2/jquery.modal.min.js"></script>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/jquery-modal@0.9.2/jquery.modal.min.css">
|
|
<script src="https://cdn.jsdelivr.net/npm/justifiedGallery@3.7.0/dist/js/jquery.justifiedGallery.min.js"></script>
|
|
<%- js('dist/main') %>
|
|
<!-- ImageViewer -->
|
|
<% if (theme.image_viewer){ %>
|
|
<%- partial('viewer') %>
|
|
<% } %>
|
|
<!-- MathJax -->
|
|
<% if (theme.mathjax){ %>
|
|
<%- partial('mathjax') %>
|
|
<script>
|
|
var ayerConfig = {
|
|
mathjax: true
|
|
}
|
|
</script>
|
|
<% } %>
|
|
<!-- Katex -->
|
|
<% if (theme.katex.enable){ %>
|
|
<%- partial('katex') %>
|
|
<% } %>
|
|
<!-- busuanzi -->
|
|
<% if (theme.busuanzi && theme.busuanzi.enable){ %>
|
|
<%- js('/js/busuanzi-2.3.pure.min') %>
|
|
<% } %>
|
|
<!-- ClickLove -->
|
|
<% if (theme.clickLove){ %>
|
|
<%- js('/js/clickLove') %>
|
|
<% } %>
|
|
<!-- ClickBoom -->
|
|
<% if (theme.clickBoom){ %>
|
|
<%- js('/js/clickBoom') %>
|
|
<% } %>
|
|
<!-- ClickBoom2 -->
|
|
<% if (theme.clickBoom2){ %>
|
|
<script src="https://cdn.jsdelivr.net/npm/animejs@latest/anime.min.js"></script>
|
|
<%- js('/js/clickBoom2') %>
|
|
<% } %>
|
|
<!-- CodeCopy -->
|
|
<% if (theme.copy_btn == true) { %>
|
|
<%- css('/css/clipboard') %>
|
|
<%- partial('post/clipboard') %>
|
|
<% } %>
|
|
<!-- CanvasBackground -->
|
|
<% if (theme.canvas_bg == 1) { %>
|
|
<%- js('/js/dz') %>
|
|
<% } %> |