summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Hostbase/hostbase/webtemplates/base.html
blob: 1d7c5565b0f08aaa985faedfc2f485100dc84a46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <title>{% block title %}BCFG2 - Hostbase{% endblock %}</title>
    <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}/boxypastel.css" />
    <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}/base.css" />
    <!--<script type="text/javascript" src="http://hostbase.mcs.anl.gov/site_media/main.js"> -->
    {% block extra_header_info %}{% endblock %}
</head>

<body>
    <div id="header">
        <div id="branding">
            <h1>BCFG2</h1>
        </div>
        <div id="user-tools">...Change is Coming...</div>
    </div>
    <div id="sidebar">
        {% block sidebar %}
        <ul class="sidebar">
        </ul>
        {% endblock %}
    </div>

    <div id="content-main">
        <div id="container">
        {% block pagebanner %}{% endblock %}
        {% block content %}{% endblock %}

        </div>
    </div>
</body>
</html>