diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-05 17:16:59 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-05 17:16:59 +0300 |
commit | 69f431bc618bb319443e257de87cf3d660420e71 (patch) | |
tree | 2f87791aef4580eb19dc8ee9d08a4ed32f4ccbbb /_includes/common/header.html | |
parent | add plain code snippets to posts (diff) | |
download | jekyll-theme-69f431bc618bb319443e257de87cf3d660420e71.tar.gz jekyll-theme-69f431bc618bb319443e257de87cf3d660420e71.zip |
bundle modified Bootstrap 3bundled_bootstrap
Diffstat (limited to '_includes/common/header.html')
-rw-r--r-- | _includes/common/header.html | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/_includes/common/header.html b/_includes/common/header.html index bf9a94c..075d04f 100644 --- a/_includes/common/header.html +++ b/_includes/common/header.html @@ -11,19 +11,11 @@ <title>{{ page.title }} - {{ site.settings.author.name }}</title> {% endif %} - {% if site.settings.3rdparty.minified %} - <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/{{ site.settings.3rdparty.versions.bootstrap }}/css/bootstrap.min.css"> - <!--[if lt IE 9]> - <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 %} - <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/{{ site.settings.3rdparty.versions.bootstrap }}/css/bootstrap.css"> - <!--[if lt IE 9]> - <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 %} + <link rel="stylesheet" href="{{ '/assets/bootstrap/css/bootstrap.min.css' | relative_url }}"> + <!--[if lt IE 9]> + <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> + <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> + <![endif]--> {% include common/mathjax.html %} |