-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (73 loc) · 2.58 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
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>IT & Technik-AG</title>
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="https://github.com/it-moerike/logbook/blob/master/2017-2018.md" target="_blank">Logbook</a></li>
<li><a href="https://github.com/it-moerike" target="_blank">GitHub</a></li>
</ul>
</nav>
<div id="header-text">
<h1>IT & Technik-AG</h1>
<p>Evangelisches Mörike Gymnasium und Realschule</p>
</div>
</header>
<main>
<section id="description">
<p>In der IT & Technik-AG lernen Schüler der 6. - 8. Klassen, wie man Webseiten baut und programmiert.</p>
<h1>Jeden Freitag</h1>
<h2>13:45 - 14:45</h2>
<h2>Computerraum</h2>
</section>
<section id="topics">
<h2>Themen</h2>
<div id="topic-wrapper">
<div id="topic-website" class="topic-card">
<div class="topic-img"></div>
<h3>Webseite</h3>
<p>Ihr lernt, wie ihr beeindruckende Webseite mit HTML und CSS schreibt.</p>
<a class="button" href="/wiki/website.html" target="_blank">Wiki</a>
</div>
<div id="topic-python" class="topic-card">
<div class="topic-img"></div>
<h3>Python</h3>
<p>Wir wollen euch das Prorammieren beibringen und Code schreiben.</p>
<a class="button" href="/wiki/python.html" target="_blank">Wiki</a>
</div>
</div>
</section>
<section id="teacher">
<h2>Leiter</h2>
<div id="teacher-wrapper">
<div id="teacher-leon">
<div class="teacher-img"></div>
<h3>Leon</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Neque.</p>
<a class="button" href="" target="_blank">Webseite</a>
</div>
<div id="teacher-linus">
<div class="teacher-img"></div>
<h3>Linus</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Neque.</p>
<a class="button" href="" target="_blank">Webseite</a>
</div>
<div id="teacher-lucas">
<div class="teacher-img"></div>
<h3>Lucas</h3>
<p>Lucas interessiert sich für Webentwicklung mit Python und baut gerne Webseiten.</p>
<a class="button" href="https://lucas-hild.de" target="_blank">Webseite</a>
</div>
</div>
</section>
<!-- TODO: Contact form -->
</main>
</body>
</html>