From 1ba7fb4e594d1ff1d96aff300c79fea0a4e3ca5f Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 16 May 2015 15:21:46 +0300 Subject: more flexible prerequisite management * Move external s and +{% else %} + +{% endif %} diff --git a/_includes/footer.html b/_includes/footer.html index a2defdc..8432483 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -19,7 +19,7 @@ - - + {% include jquery.html %} + {% include bootstrap_js.html %} diff --git a/_includes/header.html b/_includes/header.html index e21a1a6..598fc49 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -7,18 +7,14 @@ {{ page.title }} - + {% include bootstrap_css.html %} - - + {% include ie_compat.html %} 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 %} + +{% else %} + +{% endif %} diff --git a/_includes/jquery.html b/_includes/jquery.html new file mode 100644 index 0000000..aa6d2fd --- /dev/null +++ b/_includes/jquery.html @@ -0,0 +1,5 @@ +{% if site.minified_externals %} + +{% else %} + +{% endif %} -- cgit v1.2.3