diff options
author | Stig Inge Lea Bjørnsen <stiginge@pvv.org> | 2013-06-27 00:08:08 +0200 |
---|---|---|
committer | Stig Inge Lea Bjørnsen <stiginge@pvv.org> | 2015-01-05 06:27:35 +0100 |
commit | 0deaa64b5000fca5a9b10b1694e5013f57696253 (patch) | |
tree | ca48fb8ac2188bec63846788b1c4bb00cf6d5b35 /tuxlite_tbs/templates/base.html | |
parent | b12b1f6408819ca91b356adde09887c769eadd06 (diff) | |
download | pelican-themes-0deaa64b5000fca5a9b10b1694e5013f57696253.tar.gz |
Serve Twitter Bootstrap JavaScript directly for tuxlite_tbs.
Avoid using GitHub as a CDN for Twitter Bootstrap. The file
bootstrap-collapse.js is now included as a static asset in the theme.
Diffstat (limited to 'tuxlite_tbs/templates/base.html')
-rw-r--r-- | tuxlite_tbs/templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tuxlite_tbs/templates/base.html b/tuxlite_tbs/templates/base.html index a88a2bf..9b52cbe 100644 --- a/tuxlite_tbs/templates/base.html +++ b/tuxlite_tbs/templates/base.html @@ -161,7 +161,7 @@ </div> <!-- /container --> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> -<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap-collapse.js"></script> +<script src="{{ SITEURL }}/theme/bootstrap-collapse.js"></script> {% include "analytics.html" %} {% include "github.html" %} </body> |