Some simple updates that allow the login page to render properly.
[philo.git] / philo / contrib / gilbert / templates / gilbert / base.html
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
4 <head>{% block head %}
5         <title>{% block title %}{{ gilbert.title }}{% endblock %}</title>
6         
7         {% block css %}
8         <link rel="stylesheet" type="text/css" class="gilbert.theme" id="gilbert.theme.murano" title="murano" href="{{ STATIC_URL }}gilbert/murano/murano.css"{% if request.GET.theme and request.GET.theme != 'murano' %} disabled="disabled"{% endif %} />
9         <link rel="stylesheet" type="text/css" class="gilbert.theme" id="gilbert.theme.access" title="access" href="{{ STATIC_URL }}gilbert/extjs/resources/css/ext-all-access.css"{% if request.GET.theme != 'access' %} disabled="disabled"{% endif %} />
10         <link rel="stylesheet" type="text/css" class="gilbert.theme" id="gilbert.theme.blue" title="blue" href="{{ STATIC_URL }}gilbert/extjs/resources/css/ext-all.css"{% if request.GET.theme != 'blue' %} disabled="disabled"{% endif %} />
11         {% endblock %}
12         
13         {% block js %}
14         <script type="text/javascript" src="{{ STATIC_URL }}gilbert/extjs/bootstrap.js"></script>
15         {% endblock %}
16         
17         {% block extrahead %}
18         {% endblock %}
19         
20 {% endblock %}</head>
21 <body style="background-image: url({{ STATIC_URL }}gilbert/wallpaper.jpg);">{% block body %}{% endblock %}</body>
22 </html>