-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
72 lines (71 loc) · 1.85 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
70
71
72
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
background: #fff url(logo.png) repeat fixed center;
font-family: sans-serif;
}
@media all and (-webkit-min-device-pixel-ratio : 1.5),
all and (-o-min-device-pixel-ratio: 3/2),
all and (min--moz-device-pixel-ratio: 1.5),
all and (min-device-pixel-ratio: 1.5) {
body {
background-image: url([email protected]);
}
}
div#main {
width: 23em;
margin: 5em auto;
background: rgba(255,255,255,0.9);
padding: 2em;
border: 2px solid #0099d5;
font-size: 1.2em;
}
small {
font-size: 0.7em;
display: block;
text-align: right;
position: relative;
top: 1em;
right: -1em;
}
h1 {
text-align: center;
margin: 0 0 1em 0;
padding: 0;
color: #005577;
}
ul {
text-align: center;
padding: 0;
margin: 2em;
list-style-type: none;
}
li {
margin: 0 0 1em 0;
}
a {
text-decoration: none;
color: #005577;
}
a:hover {
text-decoration: underline;
}
</style>
<title>Haskell in Bayern</title>
<div id="main">
<h1>Haskell in Bayern</h1>
<p>
Eine Übersicht zu Treffen mit Bezug auf Haskell und funktionale
Programmierung in Bayern:
</p>
<ul>
<li><a href="http://muenchen.haskell.bayern/">high-order-munich: Münchner Haskell Stammtisch</a></li>
<li><a href="http://www.meetup.com/Munich-Lambda/">Munich Lambda</a></li>
<li><a href="http://www.meetup.com/Regensburg-Haskell-Meetup/">Regensburg Haskell Meetup</a></li>
<li><a href="http://curry-club-augsburg.de/">Curry Club Augsburg</a></li>
<li><a href="https://www.meetup.com/Lambda-Lounge-Funktionale-Programmierung-Nurnberg/">Lambda Lounge Nürnberg</a></li>
</ul>
Außerdem gibt es einen Matrix-Chat: <a href="https://matrix.to/#/#haskell-bavaria:augsburg.one">#haskell-bavaria:augsburg.one</a>
<small>Es fehlt noch was? <a href="https://github.com/haskell-bayern/haskell-bayern.github.io/issues">Ergänzung vorschlagen.</a></small>
</div>