diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-05-16 17:39:37 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-05-16 17:39:37 +0300 |
commit | cfc682283246a2f7167682a82b0ac62365cbe7fb (patch) | |
tree | d0e9c829f4a4cb02a0278bc6e49910d896af9c12 /_includes/ie_compat.html | |
parent | code style (diff) | |
download | jekyll-theme-cfc682283246a2f7167682a82b0ac62365cbe7fb.tar.gz jekyll-theme-cfc682283246a2f7167682a82b0ac62365cbe7fb.zip |
more flexible prerequisite management
* Move external <link>s and <script>s into separate includes.
* Opt for minified versions of external CSS stylesheets and JavaScript
files by default, allowing to use the properly formatted versions during
development using _config_dev.yml.
* External components versions are now in the config file.
Diffstat (limited to '_includes/ie_compat.html')
-rw-r--r-- | _includes/ie_compat.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/_includes/ie_compat.html b/_includes/ie_compat.html new file mode 100644 index 0000000..3cef67d --- /dev/null +++ b/_includes/ie_compat.html @@ -0,0 +1,11 @@ +{% if site.minified_externals %} + <!--[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> + <![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> + <![endif]--> +{% endif %} |