-
Notifications
You must be signed in to change notification settings - Fork 14
/
frontend-development.html
executable file
·49 lines (41 loc) · 1.35 KB
/
frontend-development.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
---
layout: default
---
{% assign lehrveranstaltungen=site.lehrveranstaltungen|where: "kuerzel","fd" %}
{% assign cards="" | split: "" %}
{% for lehrveranstaltung in lehrveranstaltungen %}
{% if lehrveranstaltung.typ != "other" %}
{% capture card %}
{% include veranstaltungsinfo-klein.html lehrveranstaltung=lehrveranstaltung %}
{% endcapture %}
{% assign cards=cards|push:card %}
{% endif %}
{% endfor %}
{% assign kursinfoBlocks=site.kurse|where: "kuerzel","fd" %}
<section class="section">
<div class="container">
<h1 class="title is-1">Frontend Development</h1>
<h2 class="subtitle">Prof. Christian Noss & Volker Schaefer</h2>
</div>
</section>
{% include kursinfo.html blocks=kursinfoBlocks %}
<section class="section buildingBlock">
<div class="container has-top-seperator">
<h2 class="title" id="termine">Termine</h2>
<div class="is-tab-wrap">
{% for card in cards %}
{{card}}
{% endfor %}
</div>
</div>
</section>
<section class="section buildingBlock">
<div class="container has-top-seperator">
<h2 class="title" id="termine">Ressourcen</h2>
<ul>
<li><a href="https://developer.mozilla.org/de/">Mozilla Developer Network (MDN)</a></li>
<li><a href="https://www.w3.org/">W3C</a></li>
<li><a href="https://caniuse.com/">Browser Support Checker von caniuse.com</a></li>
</ul>
</div>
</section>