aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_includes/common/bootstrap_css.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_css.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_css.html')
-rw-r--r--_includes/common/bootstrap_css.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/_includes/common/bootstrap_css.html b/_includes/common/bootstrap_css.html
index f47b856..72c078b 100644
--- a/_includes/common/bootstrap_css.html
+++ b/_includes/common/bootstrap_css.html
@@ -1,5 +1,5 @@
-{% if site.minified_externals %}
- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/{{ site.bootstrap_version }}/css/bootstrap.min.css">
+{% if site.settings.3rdparty.minified %}
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/{{ site.settings.3rdparty.versions.bootstrap }}/css/bootstrap.min.css">
{% else %}
- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/{{ site.bootstrap_version }}/css/bootstrap.css">
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/{{ site.settings.3rdparty.versions.bootstrap }}/css/bootstrap.css">
{% endif %}