aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_includes/common/bootstrap_js.html
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-04-09 14:13:39 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-04-09 14:43:22 +0300
commit072200d740c6c711d6042af0fdff04bbd7fe6646 (patch)
tree19e450d4433e386a5b114c1cb92f1d8875568ae0 /_includes/common/bootstrap_js.html
parent_layouts: add page.html (diff)
downloadjekyll-theme-072200d740c6c711d6042af0fdff04bbd7fe6646.tar.gz
jekyll-theme-072200d740c6c711d6042af0fdff04bbd7fe6646.zip
put theme settings under site.settings
Diffstat (limited to '_includes/common/bootstrap_js.html')
-rw-r--r--_includes/common/bootstrap_js.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/_includes/common/bootstrap_js.html b/_includes/common/bootstrap_js.html
index e724257..3f80e7d 100644
--- a/_includes/common/bootstrap_js.html
+++ b/_includes/common/bootstrap_js.html
@@ -1,5 +1,5 @@
-{% if site.minified_externals %}
- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/{{ site.bootstrap_version }}/js/bootstrap.min.js"></script>
+{% if site.settings.3rdparty.minified %}
+ <script src="https://maxcdn.bootstrapcdn.com/bootstrap/{{ site.settings.3rdparty.versions.bootstrap }}/js/bootstrap.min.js"></script>
{% else %}
- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/{{ site.bootstrap_version }}/js/bootstrap.js"></script>
+ <script src="https://maxcdn.bootstrapcdn.com/bootstrap/{{ site.settings.3rdparty.versions.bootstrap }}/js/bootstrap.js"></script>
{% endif %}