blob: 0c556bd779be45e3263bf4f8aab4fded7f7ea76c (
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
35
36
|
<!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="/site_media/boxypastel.css" />
<link rel="stylesheet" type="text/css" href="/site_media/base.css" />
<!--<script type="text/javascript" src="http://hostbase.mcs.anl.gov/site_media/main.js">
-->
</script>
{% 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>
|