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/header.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 '')
-rw-r--r-- | _includes/header.html | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/_includes/header.html b/_includes/header.html index b969917..3ccbe65 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -7,17 +7,13 @@ <title>{{ page.title }}</title> - <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.css"> + {% include bootstrap_css.html %} <link rel="stylesheet" href="{{ site.baseurl }}/css/misc.css"> <link rel="stylesheet" href="{{ site.baseurl }}/css/footer.css"> <link rel="stylesheet" href="{{ site.baseurl }}/css/syntax.css"> - <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> - <!--[if lt IE 9]> - <script src="//oss.maxcdn.com/html5shiv/3.7.2/html5shiv.js"></script> - <script src="//oss.maxcdn.com/respond/1.4.2/respond.js"></script> - <![endif]--> + {% include ie_compat.html %} </head> <body> <div class="top-level-footer-wrapper"> |