forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 9
/
master.html
208 lines (175 loc) · 5.29 KB
/
master.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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
---
layout: default
---
{% assign schwerpunkte = site.modulbeschreibungen-master|where:"typ","sp"|sort:"title" %}
{% assign schwerpunkte = schwerpunkte|sort:'title' %}
{% assign intro = site.modulbeschreibungen-master|where:"kuerzel","intro-master-schwerpunkte"|first %}
<!-- Leeres Array für Module deklarieren -->
{% assign module_ss = ""|split:"|" %}
{% assign module_ws = ""|split:"|" %}
<section class="section">
<div class="container">
<div class="content">
<h1>Schwerpunkte & Module im Master</h1>
</div>
</div>
</section>
<section class="section">
<div class="container">
<div class="content">
{{intro.content}}
</div>
</div>
</section>
{% for schwerpunkt in schwerpunkte %}
{% if schwerpunkt.content %}
<section class="section">
<div class="container">
<div class="content" id="{{schwerpunkt.id}}">
<h2 class="title is-primary" data-target="infos-{{schwerpunkt.id}}">Schwerpunkt {{schwerpunkt.title}}</h2>
<div class="is-hidden" id="infos-{{schwerpunkt.id}}">
<a href="{{site.baseurl}}/master-schwerpunkt-{{schwerpunkt.kuerzel}}/">Studienverlaufsplan für den Schwerpunkt {{schwerpunkt.title}}</a>
<br><br>
{{schwerpunkt.content}}
</div>
</div>
</div>
</section>
{% endif %}
{% endfor %}
{% assign alle_fachsemester = "1,2,3,4"|split: "," %}
{% assign alle_startsemester = "ws,ss"|split: "," %}
{% assign pflichtmodule = site.modulbeschreibungen-master|where:"typ","pm" %}
{% assign wahlpflichtmodule = site.modulbeschreibungen-master|where:"typ","wpm" %}
{% assign schwerpunktmodule = site.modulbeschreibungen-master|where:"typ","spm" %}
{% assign schwerpunktprojekte = site.modulbeschreibungen-master|where:"typ","spp" %}
{% assign module = pflichtmodule %}
{% for schwerpunktprojekt in schwerpunktprojekte %}
{% assign module = module|push: schwerpunktprojekt %}
{% endfor %}
{% for schwerpunktmodulwrap in schwerpunktmodulwraps %}
{% assign module = module|push: schwerpunktmodulwrap %}
{% endfor %}
{% for wahlpflichtmodul in wahlpflichtmodule %}
{% assign module = module|push: wahlpflichtmodul %}
{% endfor %}
{% for schwerpunktmodul in schwerpunktmodule %}
{% assign module = module|push: schwerpunktmodul %}
{% endfor %}
{% assign module = module|sort:'title' %}
{% for modul in module %}
<!-- Liegt das Modul im Sommersemester oder Wintersemester? -->
{% assign value = modul.studiensemesterWs|modulo:2 %}
{% if modul.title != "Wahlpflichtmodul" %}
{% if value == 0 %}
{% assign module_ss = module_ss|push: modul %}
{% else %}
{% assign module_ws = module_ws|push: modul %}
{% endif %}
{% endif %}
{% endfor %}
<hr>
<section class="section">
<div class="container">
<h2 class="title is-2">Alle Module</h2>
</div>
</section>
<section class="section">
<div class="container">
<div class="content">
<table class="table">
<thead>
<tr>
<th width="1%" class="kennung"></th>
<th width="60%">Module Wintersemester</th>
<th width="10%">Kürzel</th>
<th width="30%">Name</th>
</tr>
</thead>
<tbody>
{% for modul in module_ws %}
<tr>
{% assign kennung = modul.typ %}
{% if modul.title == "Wahlpflichtmodul" %}
{% assign kennung = "pm-grau" %}
{% endif %}
<td class="kennung {{kennung}}"></td>
<td><a href="{{site.baseurl}}{{modul.url}}">{{modul.title}}</a>
{% if modul.informatik-master %}
(InfMa: {{modul.informatik-master}})
{% endif %}
</td>
<td>{{ modul.kuerzel }}</td>
<td>
{% include /functions/resolve-names.html modulverantwortlich=modul.modulverantwortlich %}
{{modulverantwortliche}}
</td>
</tr>
{% endfor %}
</tbody>
<thead>
<tr>
<th width="1%" class="kennung"></th>
<th><br><br>Module Sommersemester</th>
<th width="10%"><br><br>Kürzel</th>
<th width="30%"><br><br>Name</th>
</tr>
</thead>
<tbody>
{% for modul in module_ss %}
<tr>
{% assign kennung = modul.typ %}
{% if modul.title == "Wahlpflichtmodul" %}
{% assign kennung = "pm-grau" %}
{% endif %}
<td class="kennung {{kennung}}"></td>
<td><a href="{{site.baseurl}}{{modul.url}}">{{modul.title}}</a>
{% if modul.informatik-master %}
(InfMa: {{modul.informatik-master}})
{% endif %}
</td>
<td>{{ modul.kuerzel }}</td>
<td>
{% include /functions/resolve-names.html modulverantwortlich=modul.modulverantwortlich %}
{{modulverantwortliche}}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</section>
<hr>
<section class="section">
<div class="container">
<h2 class="title is-2">Schwerpunktmodule in der Übersicht</h2>
</div>
</section>
<section class="section">
<div class="container">
<div class="content">
<table class="table">
<thead>
<tr>
<th></th>
{% for schwerpunkt in schwerpunkte %}
<th>{{schwerpunkt.title}}</th>
{% endfor %}
</tr>
</thead>
<tbody>
<tr>
{% include /functions/show-spms.html spm="SPM1" %}
</tr>
<tr>
{% include /functions/show-spms.html spm="SPM2" %}
</tr>
<tr>
{% include /functions/show-spms.html spm="SPM3" %}
</tr>
</tbody>
</table>
</div>
</div>
</section>