-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (66 loc) · 2.19 KB
/
index.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
<!DOCTYPE html5>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Hopfenspace</title>
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel="stylesheet" type="text/css" href="css/linkbar.css">
<link rel="stylesheet" type="text/css" href="css/content.css">
<link rel="stylesheet" type="text/css" href="css/footer.css">
</head>
<body>
<div id="wrapper">
<div id="header">
<h1>
<img src="img/hopfenspace.gif" alt="Hopfenspace" id="heading-logo" />
</h1>
</div>
<nav id="link-bar">
<ul>
<li>
<a href="https://github.com/hopfenspace">GitHub</a>
</li>
<li>
<a href="https://gitlab.com/hopfenspace">GitLab</a>
</li>
<li>
<a href="https://pad.hopfenspace.org/start">Notizen & Planung</a>
</li>
<li>
<a href="https://nas.hopfenspace.org/">HopfenCloud</a>
</li>
</ul>
</nav>
<div id="content">
<p>
Der Hopfenspace ist der <a href="https://de.wikipedia.org/wiki/Hackerspace">Hackerspace</a> in Pfaffenhofen a.d.Ilm.
Bei uns findest du an Technik interessierte Menschen aus allen Bereichen, von Physik bis Informatik.
<br />
Zusammen basteln, programmieren, löten – Zusammen erschaffen wir erstaunliche Dinge!
</p>
<p>
Wenn du Interesse hast, mit zu machen, wende dich an <noscript>(protected e-mail)</noscript><a id="contact"></a>.
<script type="text/javascript">
(function()
{
var element = document.getElementById("contact");
var addr = [107, 111, 110, 116, 97, 107, 116, 64, 104, 111, 112, 102, 101, 110, 46, 115, 112, 97, 99, 101];
addr = addr.map(x => String.fromCharCode(x)).join("");
element.href = "mailto:" + addr;
element.innerHTML = addr;
})();
</script>
</p>
<p>
Warum <b>Hopfen</b>space? - Pfaffenhofen liegt im Herzen der
<a href="https://de.wikipedia.org/wiki/Hallertau">Hallertau</a>, dem größten zusammenhängenden Hopfenanbaugebiet
der Welt.
</p>
</div>
<div id="footer">
<a href="https://www.bn-paf.de/impressum_datenschutz/">Impressum</a>
</div>
</div>
</body>
</html>