comparison bns_website/templates/base.html @ 105:f3a275a53bc6

Use a local version of bootstrap 1.4.0. Twitter stopped hosting the version we were using.
author Brian Neal <bgneal@gmail.com>
date Tue, 15 Oct 2013 20:50:29 -0500
parents 1bd48a82c3f2
children 9ca05ec9b64e
comparison
equal deleted inserted replaced
103:ee491a3f486d 105:f3a275a53bc6
6 <head> 6 <head>
7 <title>Brave New Surf | {% block title %}{% endblock %}</title> 7 <title>Brave New Surf | {% block title %}{% endblock %}</title>
8 <meta charset="utf-8" /> 8 <meta charset="utf-8" />
9 {% block custom_meta %}{% endblock %} 9 {% block custom_meta %}{% endblock %}
10 <link rel="shortcut icon" href="{{ STATIC_URL }}images/favicon.ico" /> 10 <link rel="shortcut icon" href="{{ STATIC_URL }}images/favicon.ico" />
11 <link rel="stylesheet" href="http://twitter.github.com/bootstrap/1.4.0/bootstrap.min.css" /> 11 <link rel="stylesheet" href="{{ STATIC_URL }}css/bootstrap.min.css" />
12 <link rel="stylesheet" href="{{ STATIC_URL }}css/fonts/future_bugler.css" /> 12 <link rel="stylesheet" href="{{ STATIC_URL }}css/fonts/future_bugler.css" />
13 {% block custom_css %}{% endblock %} 13 {% block custom_css %}{% endblock %}
14 <link rel="stylesheet" href="{{ STATIC_URL }}css/base.css" /> 14 <link rel="stylesheet" href="{{ STATIC_URL }}css/base.css" />
15 {% block custom_js %}{% endblock %} 15 {% block custom_js %}{% endblock %}
16 </head> 16 </head>