-
Notifications
You must be signed in to change notification settings - Fork 1
/
base.html
55 lines (44 loc) · 1.31 KB
/
base.html
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
55
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>KOALA Cloud Manager</title>
<link type="text/css" rel="stylesheet" href="/stylesheets/style.css">
<link rel="SHORTCUT ICON" href="/favicon.ico">
</head>
<body {{ bodycommand|safe }}>
<div id="head">
<table width="100%" border="0">
<tr>
<td width="120"><h3>
<a href="{{ url|safe }}">{{ url_linktext|safe }}</a></h3></td>
<td ALIGN="center">{{ zonen_liste|safe }}</td>
<td rowspan="2" ALIGN="right" width="120">
<a href="/sprache?lang=de" title="Deutsch"><img src="/bilder/german.png" width="37" height="20" border="0" alt="Deutsch"></a>
<a href="/sprache?lang=en" title="Englisch"><img src="/bilder/english.png" width="37" height="20" border="0" alt="English"></a>
</td>
</tr>
<tr>
<td colspan="2"><h3>Region: {{ zone|safe }} {{ zone_amazon|safe }}</h3></td>
</tr>
</table>
</div>
{{ javascript_funktion|safe }}
<div id="navigationsBar">
<div id="innerNavigationsBar">
<h3>
{{ navigations_bar|safe }}
</h3>
</div>
</div>
<div id="mainContent">
<!-- <div id="sideBarContent"> -->
<div id="innerMainContent">
{% block sideBarContent %}
{% endblock %}
</div>
<!-- </div> -->
</div>
</body>
</html>