forked from skurzinz/protokolleditionen.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (24 loc) · 1.07 KB
/
index.html
File metadata and controls
34 lines (24 loc) · 1.07 KB
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
---
layout: default
---
<section class="about">
<p>Herzlich willkommen auf der Webseite des <strong>Arbeitskreises Digitale Protokolleditionen</strong>! Die Seiten sind noch im Aufbau.</p>
<p>Der Arbeitskreis versammelt Interessierte am Austausch über das digitale Edieren von Protokollen und anderen administrativen Textsorten (meist in <a href="https://tei-c.org" target="_blank">TEI-XML</a>). Weitere Informationen siehe <a href="/ueber-uns">Über uns</a>).</p>
</section>
<section class="posts">
<h1>Aktuelles</h1>
{% for post in paginator.posts %}
<article class="post">
<h2><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
<div class="entry">
{% if post.content contains '<!--more-->' %}
{{ post.excerpt }}
{% else %}
{{ post.excerpt | markdownify | strip_html | truncate: 2000 }}
{% endif %}
</div>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Mehr ·{% include read-time.html content=post.content %}</a>
</article>
{% endfor %}
{% include pagination.html %}
</section>