-
Notifications
You must be signed in to change notification settings - Fork 4
/
template.html
executable file
·121 lines (110 loc) · 3.56 KB
/
template.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
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
<!doctype html>
<html lang="de">
<head>
<title>Chaostreff Nürnberg</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" type="image/png" href="images/icons/favicon.ico" />
<link rel="stylesheet" type="text/css" href="vendor/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<div class="container">
<div class="row justify-content-center container-head">
<div class="col-md-12">
<h1 class="display-4 text-center">Chaostreff Nürnberg</h1>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-9">
<p>
Der Chaostreff Nürnberg trifft sich im <a href="https://fablab-nuernberg.de/">Fablab
Region Nürnberg</a>, in der <a href="https://k4cg.org">K4CG</a> und im <a
href="https://www.nerdberg.de">Nerdberg</a>. Anfahrt, etc. bitte der jeweiligen Homepage
entnehmen.
</p>
<p>
<ul>
<li><b>K4CG</b>: <strike>jeden ersten Donnerstag im Monat um 19:30 Uhr</strike> Wegen einer Baustelle aktuell geschlossen</li>
<li><b>Fablab Region Nürnberg</b>: nur auf Anfrage</li>
<li><b>Nerdberg e.V.</b>: jeden zweiten Mittwoch um 19:00 Uhr</li>
</ul>
</p>
<p>
Wir reden über internationale Netzwerke – Kommunikationsrecht –
Datenrecht (Wem gehören meine Daten?) – Copyright – Informations- u.
Lernsysteme – Datenbanken – Encryption – Komputerspiele –
Programmiersprachen – processcontrol – Hardware – und was auch
immer. (Quelle: <a href="https://events.ccc.de/2017/11/23/34c3-tuwat/">tuwat.txt</a>)
</p>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-9">
<table class="table table-striped table-dark date-table">
<thead>
<tr>
<th scope="col">Datum</th>
<th scope="col">Ort</th>
<th scope="col">Zeit</th>
</tr>
</thead>
<tbody>
{{data}}
</tbody>
</table>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-9">
<p>
Kontakt zur Chaostreff Nürnberg Orga:
</p>
<p>
IRC: hackint, <a href="https://webirc.hackint.org/#chaosnuernberg">#chaosnuernberg</a>
</p>
<p>
All creatures welcome!
</p>
</div>
</div>
<div class="row justify-content-center container-head">
<div class="col-md-12">
<h1 class="display-4 text-center">Hackspaces in der Region</h1>
</div>
</div>
<div class="row justify-content-center text-center">
<div class="col-sm">
<a href="https://fablab-nuernberg.de/">
<img src="images/fablab.png" width="50%" class="figure-img img-fluid rounded" alt="Logo Fablab">
<p class="text-center">Fablab Region Nürnberg</p>
</a>
</div>
<div class="col-sm">
<a href="https://k4cg.org/">
<img src="images/k4cg.png" width="50%" class="figure-img img-fluid rounded" alt="Logo K4CG">
<p class="text-center">K4CG</p>
</a>
</div>
<div class="col-sm">
<div class="col-sm">
<a href="https://wiki.nerdberg.de/">
<img src="images/nerdberg.png" width="50%" class="figure-img img-fluid rounded"
alt="Logo Nerdberg">
<p class="text-center">Nerdberg</p>
</a>
</div>
</div>
<div class="col-sm">
<div class="col-sm">
<a href="https://0x90.space/">
<img src="images/0x90.png" width="50%" class="figure-img img-fluid rounded"
alt="Logo 0x90 space">
<p class="text-center">0x90.space</p>
</a>
</div>
</div>
</div>
</div>
</body>
</html>