aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_includes/common/ie_compat.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/ie_compat.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/ie_compat.html')
-rw-r--r--_includes/common/ie_compat.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/_includes/common/ie_compat.html b/_includes/common/ie_compat.html
index 3cef67d..494d971 100644
--- a/_includes/common/ie_compat.html
+++ b/_includes/common/ie_compat.html
@@ -1,11 +1,11 @@
-{% if site.minified_externals %}
+{% if site.settings.3rdparty.minified %}
<!--[if lt IE 9]>
- <script src="https://oss.maxcdn.com/html5shiv/{{ site.html5shiv_version }}/html5shiv.min.js"></script>
- <script src="https://oss.maxcdn.com/respond/{{ site.respond_version }}/respond.min.js"></script>
+ <script src="https://oss.maxcdn.com/html5shiv/{{ site.settings.3rdparty.versions.html5shiv }}/html5shiv.min.js"></script>
+ <script src="https://oss.maxcdn.com/respond/{{ site.settings.3rdparty.versions.respond }}/respond.min.js"></script>
<![endif]-->
{% else %}
<!--[if lt IE 9]>
- <script src="https://oss.maxcdn.com/html5shiv/{{ site.html5shiv_version }}/html5shiv.js"></script>
- <script src="https://oss.maxcdn.com/respond/{{ site.respond_version }}/respond.js"></script>
+ <script src="https://oss.maxcdn.com/html5shiv/{{ site.settings.3rdparty.versions.html5shiv }}/html5shiv.js"></script>
+ <script src="https://oss.maxcdn.com/respond/{{ site.settings.3rdparty.versions.respond }}/respond.js"></script>
<![endif]-->
{% endif %}