summaryrefslogtreecommitdiff
path: root/sublab_project/templates/base.html
blob: 8dc99b06e3595d7883336f71a00c073415a68931 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{% load host_status %}
{% load flatblock_tags %}
<!DOCTYPE HTML>
<html>
	<head>
		<meta charset="UTF-8">
		<title>sublab - {% block title %}Ein Hackerspace in Leipzig{% endblock %}</title>

		<meta name="author" content="sublab e.V.">
		<meta name="robots" content="index,follow">

		{% if meta_date %}<meta name="dcterms.date" content="{{ meta_date|date:"c"}}">{% endif %}
		<meta name="keywords" content="sublab, Hackerspace, Leipzig, Computer, Linux, Freie Software">
		{# <meta name="description" lang="de" content="$template_desc_de"> #}
		{# <meta name="description" lang="en" content="$template_desc_en"> #}

		<link rel="stylesheet" href="{{ STATIC_URL }}css/sublab.css" type="text/css">
		<link rel="shortcut icon" href="{{ STATIC_URL }}img/favicon.png">

		{% block feeds %}
		<link rel="alternate" type="application/atom+xml" title="sublab.org News (atom)" href="{% url news_feed_atom %}">
		<link rel="alternate" type="application/rss+xml"  title="sublab.org News (rss)" href="{% url news_feed %}">
		{% endblock feeds %}
	</head>

	<body>
		<div class="hiddenframe">
		<div class="frame">

			<div class="logo">
			</div>

			<div class="image">
				<p class="header">
					<span class="header">[ <a href="/mate/">mate</a> und technik ]</span>
				</p>
				<h1>
					Das sublab - ein Hackerspace in Leipzig
				</h1>
			</div>

			<div class="menu">
				<ul id="menu">
					{% block navigation %}
					<li>
						<a href="/">Home</a>
					</li>
					<li>
						<a href="{% url news_list %}">Neues</a>
					</li>
					<li>
						<a href="/termine/">Termine</a>
					</li>
					<li>
						<a href="/raeume/">Räume</a>
					</li>
					<li>
						<a href="{% url projects_list %}">Projekte</a>
					</li>
					<li>
						<a href="/webcam/">Webcams</a>
					</li>
					<li>
						<a href="/lage/">Lage</a>
					</li>
					<li>
						<a href="/medien/">Medien</a>
					</li>
					<li>
						<a href="http://wiki.sublab.org/">Wiki</a>
					</li>
					<li>
						<a href="/kontakt/">Kontakt</a>
					</li>
					<li>
						<a href="/verein/">Verein</a>
					</li>
					<li>
						<a href="/impressum/">Impressum</a>
					</li>
					{% endblock navigation %}
				</ul>
			</div>

			<div class="info">

				<h4>
					Statusdisplay
				</h4>
				<hr>
				<div class="status">
				<table>
					<tr>
						{% host_status 'taifun' %}
					</tr>
					<tr>
						{% host_status 'trieste' %}
					</tr>
					<tr>
						{% host_status 'nautilus' %}
					</tr>
				</table>
				</div>
				<hr>
				<p class="status">
					{% flatblock "motd" %}
				</p>
				<hr>
				<a href="/webcam/" class="img"><img src="{{ STATIC_URL }}img/thumb.rack.webcam.jpg" alt="Webcam im Fenster" class="webcamthumb"></a>
				<hr>
				<a href="{{ STATIC_URL }}img/tempgraph.png" class="img"><img src="img/thumb.tempgraph.png" alt="Temperaturen im sublab" class="webcamthumb"></a>
				<hr>
				<p class="member">
					<a href="{{ STATIC_URL }}pdf/sublab_ev_mitgliedsantrag.pdf">Mitglied werden</a>
				</p>
				<hr>
				<p class="centeredImage topMargin">
					<a href="http://www.djangoproject.com/" class="noBorder">
						<img src="{{ STATIC_URL }}img/badges/djangomade124x25.gif" border="0" alt="Made with Django." title="Made with Django." class="noBorder" />
					</a>
				</p>
			</div>

			<div class="content">
				{% block content %}
				This is where the content would be.
				{% endblock %}
				<hr>
			</div>

			<div class="footer">
				<p>
					<a href="http://wiki.vorratsdatenspeicherung.de/Ortsgruppen/Leipzig">AK Vorrat</a> |
					<a href="http://c3le.de/">c3le</a> |
					<a href="http://leipzig.freifunk.net/">Freifunk Leipzig</a> |
					<a href="https://wiki.fsfe.org/groups/Leipzig">FSFE Leipzig</a> |
					<a href="http://hackstatt.org">Hackstatt</a> |
					sub:lounge |
					<a href="http://aboutradio.org/">about:radio</a>
				</p>
			</div>

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

</html>