-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
32 lines (31 loc) · 1.02 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
---
layout: default
title: "Startseite"
---
<div class="row">
<div class="col-md-8">
<h2>Aktuelles</h2>
{% for post in site.posts limit: 3 %}
<div class="card bg-light my-4">
<div class="card-body">
<h3>{{post.title}}</h3>
<p class="card-text">{{ post.excerpt | strip_html }}</p>
<a class="btn btn-primary" href="{{post.url}}" role="button">Zum Beitrag</a>
</div>
</div>
{% endfor %}
</div>
<div class="col-md-4">
<div class="card bg-light">
<img class="card-img-top" src=" {{ "2024/img/ViFE-ESS-logo.png" | relative_url }}" alt="ESS-Logo"/>
<div class="card-body">
<p class="text-center">
<b>16. Edirom Summer School</b>
<br/><b>8. bis 12. September 2025</b>
<br/>Heinz-Nixdorf-Institut
<br/>Universität Paderborn
</p>
</div>
</div>
</div>
</div>