-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
172 lines (154 loc) · 5.5 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>FOSA</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="{{rootpath}}/css/normalize.min.css">
<link rel="stylesheet" href="{{rootpath}}/css/main.css">
<script src="{{rootpath}}/js/vendor/modernizr-2.6.2-respond-1.1.0.min.js"></script>
</head>
<body>
<div class="header-container">
<header class="wrapper clearfix">
<h1 class="title">FOSA</h1>
<nav>
<ul>
<li><a href="#formelsammlungen">FOSAs</a></li>
<li><a href="#news">News</a></li>
<li><a href="#helfe">Hilf mit!</a></li>
<li><a href="#kontakt">Kontakt</a></li>
</ul>
</nav>
</header>
</div>
<div class="main-container">
<div class="main wrapper clearfix">
<article>
<header>
<h1>Willkommen</h1>
<p>Herzlich willkommen auf der Homepage des FOSA-Teams.
Hier findest du die aktuellen PDFs unserer
Formelsammlungen und die Links zu den Sourcen.</p>
<h2>Was ist FOSA</h2>
<p>FOSA ist ein Kürzel für Formelsammlung und steht
sowohl für ein Projekt als auch für eine Gruppe, welche
sich über Github organisiert. Diese Gruppe besteht aus
Studenten der Hochschule Luzern.</p>
<h2>Was ist daran so besonders?</h2>
<p>Es gibt doch bereits viele Bücher und
Formelsammlungen zu jedem nur denkbaren Fachgebiet? Ja,
aber...
<br>
... diese sind meist entweder völlig überladen, nicht an
dein Modul angepasst oder einfach nicht verständlich für
Studenten. Zudem sind diese nur in gedruckter Form
vorhanden, d.h. jede Änderung nahezu unmöglich, ohne das
Buch zwischen den Zeilen vollzukritzeln.</p>
<p>Was wir machen, ist eine freie Sammlung von
Formelbüchern, welche exakt auf die Module der
Hochschule Luzern angepasst sind. Insbesondere sind
diese frei verfügbar als mit Git versionierter LaTeX
Source Code bei Github. Dieser ist unter der GPLv2
lizensiert . Das bedeutet, dass jeder unsere Arbeit
frei verwenden und erweitern kann. Dabei verpflichtet
er sich, seine Änderungen wiederum zur Verfügung zu
stellen (Copyleft).</p>
</header>
<hr id="formelsammlungen">
<h2>Formelsammlungen zum Download</h2>
<table>
<thead>
<th>Name</th>
<th>Update</th>
</thead>
<tbody>
{% for formelsammlung in formelsammlungen %}
<tr>
<td><a href="{{formelsammlung.fileurl}}">{{formelsammlung.name}}</a></td>
<td>{{formelsammlung.lastChange|date("d.m.Y H:i:s")}}</td>
</tr>
{% else %}
<tr>
<td colspan="2">Leider wurde keine Formelsammlung gefunden</td>
</tr>
{% endfor %}
</tbody>
</table>
<h2>Weitere Unterlagen</h2>
<table>
<thead>
<th>Name</th>
<th>Update</th>
</thead>
<tbody>
<tr>
<td><a href="http://fosa.adinox.ch/artifacts/spick_math/spick_main.pdf">Notizen Mathematik</a></td>
<td>02.02.2013 13:14:15</td>
</tr>
<tr>
<td><a href="http://fosa.adinox.ch/artifacts/colwork/colwork_main.pdf">Colwork</a></td>
<td>02.02.2013 13:14:26</td>
</tr>
</tbody>
</table>
<h2>Quellen</h2>
<a href="https://github.com/fosa">Fosa on Github</a>
<hr id="helfe">
<h1>Hilf mit!</h1>
<p>Du kannst dem FOSA-Team auf verschiedene Weise helfen, die
Formelsammlungen zu verbessern. Am einfachsten geht dies über
das Melden von Fehlern und Wünschen per Issue. Hierfür kannst
Du einfach den Links folgen und ein bestehendes Issue
erweitern oder ein neues erstellen.
<UL>
<LI> <a href="https://github.com/fosa/fosamath/issues">Issues Mathematik</a>
<LI> <a href="https://github.com/fosa/fosaet/issues">Issues Elektrotechnik</a>
<LI> <a href="https://github.com/fosa/fosaphy/issues">Issues Physik</a>
<LI> <a href="https://github.com/fosa/fosastoc/issues">Issues Stochastik</a>
</UL>
Falls du gerne mehr machen möchtest als nur Issues erstellen,
dann kannst du dich direkt per E-Mail an das
<a href="mailto:[email protected]">FOSA-Team</a>
wenden. Wir sind für jede Art von Hilfe dankbar!
<hr id="kontakt">
<h1>Kontakt</h1>
<p>Hast Du noch Fragen oder möchtest Du uns etwas mitteilen?
Kein Problem! Kontaktiere das FOSA-Team einfach per E-Mail.</p>
<blockquote>
<b>FOSA-Team</b>
<p>
Daniel Winz<br>
Ervin Mazlagic<br>
Adrian Imboden<br>
<a href="mailto:[email protected]">[email protected]</a> <br>
</p>
</blockquote>
</article>
<aside id="news">
<h1>News</h1>
<h2>Neue Formelsammlung zu ATS</h2>
<p>Für das Modul ATS wird eine Formelsammlung
Automatisierungssysteme erarbeitet. Zur Zeit wird das PDF auf
dem Server manuell aktualisiert, sollte aber bald automatisch
aktualisiert werden. </p>
<h2>Neue Formelsammlungen bei Fosa</h2>
<p>Die Formelsammlungen von Mario Felder und Michael Fallegger
werden neu auf Github in der
<a href="https://github.com/fosa">Gruppe Fosa</a>
auf Github verwaltet. In Kürze werden die PDFs auch auf
fosa.adinox.ch verfügbar sein. </p>
</aside>
</div> <!-- #main -->
</div> <!-- #main-container -->
<div class="footer-container">
<footer class="wrapper">
</footer>
</div>
</body>
</html>