diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-05-16 03:31:46 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-05-16 03:31:46 +0300 |
commit | 10c0a594657ee6f5df5810f6ea35408595208adb (patch) | |
tree | 3ccb117151ef6b3f3e313ef785b314508391230d /_includes/header.html | |
parent | code style (diff) | |
download | egor-tensin.github.io-10c0a594657ee6f5df5810f6ea35408595208adb.tar.gz egor-tensin.github.io-10c0a594657ee6f5df5810f6ea35408595208adb.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/header.html')
-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 1a14fb2..49ad713 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -7,16 +7,12 @@ <title>{{ page.title }}</title> - <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.css"> + {% include bootstrap_css.html %} <link rel="stylesheet" href="/css/footer.css"> <link rel="stylesheet" href="/css/misc.css"> - <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> - <!--[if lt IE 9]> - <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.js"></script> - <script src="https://oss.maxcdn.com/respond/1.4.2/respond.js"></script> - <![endif]--> + {% include ie_compat.html %} </head> <body> <div class="top-level-footer-wrapper"> |