summaryrefslogtreecommitdiffstats
path: root/templates/base.html
blob: b1fc47f33a2d4cc7712982e2b98d38c7ee4b8c0a (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="stylesheet" type="text/css" href="{{ settings.MEDIA_URL }}css/main2.css" />

<title>{% block title %}THE TITLE{% endblock %}</title>

<script src="{{ settings.MEDIA_URL }}js/base.js" type="text/javascript"></script>
{% block head %}{% endblock %}
</head>

<body>
<a href="/">
<div style="float:none">
  <div id="expoHeader" style="background:#222"> <img src="{{ settings.MEDIA_URL }}loserBanner.jpg" style="position:relative;width:inherit;height:inherit;"/>
    <div id="expoHeaderText">
      <h1>CUCC Expeditions to Austria: 1976 - 2008</h1>
    </div>
  </div>
  <hr/>
  <div id="editLink" style="right:0px; top:0px; text-align: right; position: absolute; top:0; right:0; z-index:1; background:#999"> 
 	{% block editLink %}
    	not editable
    {% endblock %}
  </div>
</div>
</a>


  {% block nav %}
  <!-- Use id="nav" for the left side menu -->
  {% endblock %} 



<div id="content" >
{% block contentheader %}
{% endblock %}
{% block content %}
    REPLACE : The content
{% endblock %} 
<br class="clearfloat" /> <!--This is to ensure that the content div expands around floated objects*/-->
</div>


<div id="footer">
{% block footer %}
  THE FOOTER
{% endblock %}
</div>
</body>
</html>