-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
72 lines (63 loc) · 2.41 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
layout: default
title: "Startseite"
---
<section>
<div class="container text-center py-3">
<div class="row g-3">
<div class="col-10 col-sm-6">
<img src="{{ '2024/img/ViFE-ESS-logo.png' | relative_url }}" class="img-fluid mx-auto d-block"
alt="Edirom Logo" />
</div>
<div class="col-sm-6">
<div class="card bg-light py-3">
<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>
{% include index-counter.html %}
</div>
<!--<div><br/><p><a href="/2025/registrierung.html">Jetzt registrieren!</a></p></div>-->
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container text-center py-3">
<div>
<div class="card-header bg-primary">
<h1 class="text-light">Edirom Summer School</h1>
<p>Die Edirom Summer School beschäftigt sich mit Forschungsfragen zu digitaler Editionsarbeit sowie Digital Humanities,
insbesondere in Workshops zu TEI, MEI und den Edirom-Tools. <a href="about.html">Mehr erfahren</a></p>
</div>
</div>
</div>
</section>
<section>
<div class="container py-5">
<div class="row g-3">
<div class="col-sm-6">
<h2>Aktuelles</h2>
{% for post in site.posts limit: 2 %}
<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-sm-6">
<h2>Keynote</h2>
{% include index-keynote.html %}
</div>
</div>
</div>
</section>