forked from th-koeln/mi-bachelor-praxisprojektseminar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
faq.html
executable file
·40 lines (31 loc) · 770 Bytes
/
faq.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
---
layout: default
---
{% assign faqs=site.faq | sort:'title' %}
{% assign introtext=site.snippets | where:"kennung","faq" %}
<section class="section">
<div class="container">
<h1 class="title is-1">Frequently Asked Questions</h1>
<div class="content">
<p>{{introtext[0].content}}</p>
</div>
</div>
<div class="container">
<hr>
<ul>
{% for faq in faqs %}
<li><a href="#{{ faq.id }}">{{ faq.titel }}</a></li>
{% endfor %}
</ul>
</div>
</section>
<section class="section">
<div class="container zweispalter">
{% for faq in faqs %}
<div class="content faq">
<h2 class="title is-2" id="{{ faq.id }}">{{ faq.titel }}</h2>
{{ faq.content }}
</div>
{% endfor %}
</div>
</section>