-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfos.html
32 lines (31 loc) · 886 Bytes
/
infos.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
---
title: Informationen
layout: body
subtitle: Hier stehen einige Dokumente zum Download bereit.
---
<section id="career" class="block career-block outer">
<div class="inner">
<div class="block-header">
<h2 class="block-title">{{ page.title }}</h2>
<p class="block-subtitle">{{ page.subtitle }}</p>
</div>
<article class="box post">
{% for download in site.data.downloads %}
<section>
<h2 id="{{forloop.index}}">{{ download.title }}</h2>
<p>{{ download.text }}</p>
{% if download.action %}
<p class="block-buttons">
<a
href="{{ download.action.url | relative_url }}"
target="_blank"
class="button secondary"
>{{ download.action.label }}</a
>
</p>
{% endif %}
</section>
{% endfor %}
</article>
</div>
</section>