-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
47 lines (43 loc) · 1.37 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
---
title: PeP et al. e.V.
layout: base
landing: true
---
{% assign special = site.categories.special[0] %}
{% assign index = 0 %}
<div class="banner" id="banner">
<h2>{{ special.special-title }}</h2>
<h3>{{ special.special-subtitle }}</h3>
{% if special.special-action %}
<a href="{{ special.url }}" class="btn btn-outline-light" type="button">
{{ special.special-action }}
</a>
{% endif %}
</div>
<div class="container landing" id="content">
<div class="card mb-3" id="pep">
<div class="card-body text-center">
<img class="landing-logo" src="images/pep-logo.svg" alt="PeP et al. e.V. – Physikstudierende und ehemalige Physikstudierende der TU Dortmund et al.">
<hr width="300px" class="mx-auto">
<p style="text-align: center;" class="no-hyphen">
Sieh dir an wofür wir stehen.
Unser <a href="{{'ueber_uns/satzung_und_leitbild.html' }}">Leitbild.</a>
</p>
</div>
</div>
{% for offset in (0..1) %}
<div class="row">
{% assign off = offset|times:2 %}
{% for post in site.categories["special"] limit:2 offset:off %}
<div class="col-12 col-md-6 mb-2">
{% include post.html post=post %}
</div>
{% endfor %}
</div>
{% endfor %}
<div class="row mb-3">
<div class="col-12 text-center">
<a href="archive/index.html" class="btn btn-secondary">Alle Posts</a>
</div>
</div>
</div>