From cfc682283246a2f7167682a82b0ac62365cbe7fb Mon Sep 17 00:00:00 2001 From: Egor Tensin <Egor.Tensin@gmail.com> Date: Sat, 16 May 2015 17:39:37 +0300 Subject: 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. --- _includes/header.html | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to '_includes/header.html') 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"> -- cgit v1.2.3