diff options
author | Damien Lespiau <damien.lespiau@intel.com> | 2014-08-31 22:42:24 +0100 |
---|---|---|
committer | Stephen Finucane <stephen.finucane@intel.com> | 2015-11-05 03:51:30 +0000 |
commit | 2ae3bf48eca4c8a3583a6b40a3fcd1fe0783254a (patch) | |
tree | af1be1925e62b5ca681cd05d181e5399a7ea3ec8 | |
parent | 638b215fdb1bebb8ab2ff71f6b8a4dd325572651 (diff) | |
download | patchwork-2ae3bf48eca4c8a3583a6b40a3fcd1fe0783254a.tar patchwork-2ae3bf48eca4c8a3583a6b40a3fcd1fe0783254a.tar.gz |
template: Add bootstrap to the base template
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Acked-by: Stephen Finucane <stephen.finucane@intel.com>
-rw-r--r-- | templates/base.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html index 72dab34..0a2ced3 100644 --- a/templates/base.html +++ b/templates/base.html @@ -5,9 +5,18 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <title>{% block title %}Patchwork{% endblock %} - Patchwork</title> + <link rel="stylesheet" type="text/css" href="{% static "css/bootstrap.min.css" %}"/> <link rel="stylesheet" type="text/css" href="{% static "css/style.css" %}"/> <script type="text/javascript" src="{% static "js/common.js" %}"></script> <script type="text/javascript" src="{% static "js/jquery-1.10.1.min.js" %}"></script> + <!-- IE8 support of HTML5 elements and media queries --> + <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> + <!--[if lt IE 9]> + <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"> + </script> + <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> + <![endif]--> + <script type="text/javascript" src="{% static "js/bootstrap.min.js" %}"></script> {% block headers %}{% endblock %} </head> <body> |