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/jquery.html | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 _includes/jquery.html (limited to '_includes/jquery.html') 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 %} + <script src="https://code.jquery.com/jquery-{{ site.jquery_version }}.min.js"></script> +{% else %} + <script src="https://code.jquery.com/jquery-{{ site.jquery_version }}.js"></script> +{% endif %} -- cgit v1.2.3