diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-09 14:13:39 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-09 14:43:22 +0300 |
commit | 072200d740c6c711d6042af0fdff04bbd7fe6646 (patch) | |
tree | 19e450d4433e386a5b114c1cb92f1d8875568ae0 /_includes/common/jquery.html | |
parent | _layouts: add page.html (diff) | |
download | jekyll-theme-072200d740c6c711d6042af0fdff04bbd7fe6646.tar.gz jekyll-theme-072200d740c6c711d6042af0fdff04bbd7fe6646.zip |
put theme settings under site.settings
Diffstat (limited to '_includes/common/jquery.html')
-rw-r--r-- | _includes/common/jquery.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/_includes/common/jquery.html b/_includes/common/jquery.html index aa6d2fd..7e59177 100644 --- a/_includes/common/jquery.html +++ b/_includes/common/jquery.html @@ -1,5 +1,5 @@ -{% if site.minified_externals %} - <script src="https://code.jquery.com/jquery-{{ site.jquery_version }}.min.js"></script> +{% if site.settings.3rdparty.minified %} + <script src="https://code.jquery.com/jquery-{{ site.settings.3rdparty.versions.jquery }}.min.js"></script> {% else %} - <script src="https://code.jquery.com/jquery-{{ site.jquery_version }}.js"></script> + <script src="https://code.jquery.com/jquery-{{ site.settings.3rdparty.versions.jquery }}.js"></script> {% endif %} |