diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-05-16 15:21:46 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-05-16 15:21:46 +0300 |
commit | 1ba7fb4e594d1ff1d96aff300c79fea0a4e3ca5f (patch) | |
tree | 72e3290b1532f22131a8d187b0aa4f9b5400cfb4 /_includes/footer.html | |
parent | code style (diff) | |
download | sorting-algorithms-1ba7fb4e594d1ff1d96aff300c79fea0a4e3ca5f.tar.gz sorting-algorithms-1ba7fb4e594d1ff1d96aff300c79fea0a4e3ca5f.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.yml.
* External components versions are now in the config file.
Diffstat (limited to '_includes/footer.html')
-rw-r--r-- | _includes/footer.html | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ </footer> </div> </div> - <script src="//code.jquery.com/jquery-1.11.0.js"></script> - <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.js"></script> + {% include jquery.html %} + {% include bootstrap_js.html %} </body> </html> |