jekyll(assets): move jquery to assets folder

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2022-07-27 03:23:39 +02:00
parent 2a0de5f737
commit 82838fb61d
2 changed files with 2 additions and 2 deletions

View File

@@ -60,12 +60,12 @@
{%- if page.layout == 'landing' -%}
<!-- landing page scripts -->
<script defer src="/js/theme-switcher.js"></script>
<script defer src="/js/jquery.js"></script>
<script defer src="/assets/jquery/jquery.js"></script>
<script defer src="/assets/bootstrap/bootstrap.min.js"></script>
{%- else -%}
<script defer src="/js/theme-switcher.js"></script>
<script defer src="/js/anchorlinks.js"></script>
<script defer src="/js/jquery.js"></script>
<script defer src="/assets/jquery/jquery.js"></script>
<script defer src="/assets/bootstrap/bootstrap.min.js"></script>
<script defer src="/js/docs.js"></script>
{%- endif -%}