-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
executable file
·125 lines (125 loc) · 3.87 KB
/
index.php
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
<!DOCTYPE html>
<html lang="de">
<head>
<title>SauerIT</title>
<?php include('php/layout/head.php');?>
</head>
<body>
<?php include('php/layout/navbar.php');?>
<main class="container-fluid">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<article>
<h1>Mein Studium</h1>
Mit meinem Studium habe ihc im Sommersemester 2014 begonnen. vor dem Studium war ich an der TLS in Gießen und habe danach ein halb Jahres Praktikum beim Regierungspräsidium Gießen abgeschlossen.
Zur zeit besuche ich folgende Kurse
<ul>
<li>IBS</li>
<li>DBS</li>
<li>AuD</li>
<li>RfI</li>
</ul>
Meine Betätigungsbereiche im Privatenbereich sind folgende:
<img class="img-responsive" src="img/wordle.png" alt="Wordcloud mit Betätigungsbereichen" />
</article>
</div>
<div class="col-md-8 col-md-offset-2">
<div class="col-md-5">
<h1>Codecademy Profil</h1>
<a href="https://www.codecademy.com/csar56" title="Codecademy Profil">Hier der Link zu meinem Codecademy Profil</a>
</div>
<div class="col-md-7">
<h1>Git Projekt</h1>
<div class="col-md-5">
<h2>Mein Profil</h2>
<a href="https://github.com/csar56/WS2015" title="Git Projekt">Mein Git Projekt</a>
</div>
<div class="col-md-7">
<h2>Partner</h2>
<a href="https://github.com/BlackHawk1912/aperturelabs" title="Partner Projekt">Projekt</a><br />
<a href="https://github.com/csar56/aperturelabs" title="Partner Fork">Fork</a><br />
</div>
</div>
</div>
<div class="col-md-8 col-md-offset-2 table-responsive">
<article>
<h1>Aktueller Studenplan</h1>
<table class="table table-stripped table-bordered table-hover">
<thead>
<tr>
<th>Zeit</th>
<th>Montag</th>
<th>Dienstag</th>
<th>Mittwoch</th>
<th>Donnerstag</th>
<th>Freitag</th>
</tr>
</thead>
<tbody>
<tr>
<td>8:00-9:30</td>
<td> </td>
<td>DBS-Ü</td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>9:50-11:20</td>
<td> </td>
<td>DBS-V</td>
<td>AuD-V</td>
<td>AuD-V</td>
<td> </td>
</tr>
<tr>
<td>11:30-13:00</td>
<td>IBS-V</td>
<td>DBS-V</td>
<td>AuD-V</td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>14:00-15:30</td>
<td> </td>
<td> </td>
<td>IBS-Ü</td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>15:45-17:15</td>
<td> </td>
<td>RfI</td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>17:30-19:00</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="col-md-8 col-md-offset-2">
<article>
<h1>Meine Projekte</h1>
<p>Meine derzeitigen Projekte/Webseiten belaufen sich auf:
Die Website der <a href="http://www.bums.fellingshausen.de" title="BuMs Füchse Fellingshausen">Burschen und Mädchenschaft Füchse Fellingshausen</a>, die ich zur zeit mit dem CSS Framework Pure von Yahoo betreibe, sowie einen dynamischen Temrinplan mit PHP und einer MySQL Datenbank.
Die Webseite der <a href="http://www.jugendfeuerwehr-fellingshausen.de" title="JF Fellingshausen">Jugendfeuerwehr Fellingshausen</a>, betrieben mit Wordpress.
Und einer selbst entwickelten <a href="http://www.events.fellingshausen.de" title="Fell Events">Veranstaltungsseite</a> für meine Ortschaft, die mit dem CSS Framework Bootstrap betrieben wird.
</p>
</article>
</div>
</div>
</main>
<?php include('php/layout/footer.php');?>
</body>
</html>