Simplified the post JS file.
This commit is contained in:
parent
032f5c7f83
commit
75c57d1725
5 changed files with 5 additions and 22 deletions
|
@ -12,11 +12,7 @@
|
|||
|
||||
{% elsif page.layout == 'post' %}
|
||||
|
||||
{% if site.toc and page.toc %}
|
||||
<script src="{{ '/assets/js/post-toc.min.js' | relative_url }}" async></script>
|
||||
{% else %}
|
||||
<script src="{{ '/assets/js/post.min.js' | relative_url }}" async></script>
|
||||
{% endif %}
|
||||
<script src="{{ '/assets/js/post.min.js' | relative_url }}" async></script>
|
||||
|
||||
{% if page.math %}
|
||||
<!-- MathJax -->
|
||||
|
|
|
@ -26,7 +26,6 @@ const include = [
|
|||
'{{ "/assets/js/home.min.js" | relative_url }}',
|
||||
'{{ "/assets/js/page.min.js" | relative_url }}',
|
||||
'{{ "/assets/js/post.min.js" | relative_url }}',
|
||||
'{{ "/assets/js/post-toc.min.js" | relative_url }}',
|
||||
|
||||
/*--- HTML ---*/
|
||||
|
||||
|
|
16
assets/js/post-toc.min.js
vendored
16
assets/js/post-toc.min.js
vendored
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
layout: compress
|
||||
|
||||
# JS for layout post (with ToC).
|
||||
# Chirpy v2.3
|
||||
# https://github.com/cotes2020/jekyll-theme-chirpy
|
||||
# © 2020 Cotes Chung
|
||||
# MIT License
|
||||
---
|
||||
|
||||
|
||||
{% include_relative _home-post.js %}
|
||||
|
||||
{% include_relative lib/_bootstrap-toc.min.js %}
|
||||
|
||||
{% include_relative _utils/toc.js %}
|
4
assets/js/post.min.js
vendored
4
assets/js/post.min.js
vendored
|
@ -9,3 +9,7 @@ layout: compress
|
|||
---
|
||||
|
||||
{% include_relative _home-post.js %}
|
||||
|
||||
{% include_relative lib/_bootstrap-toc.min.js %}
|
||||
|
||||
{% include_relative _utils/toc-filter.js %}
|
||||
|
|
Loading…
Reference in a new issue