2019-03-12 13:49:49 +01:00
|
|
|
{% for post in paginator.posts %}
|
|
|
|
<article class="post">
|
|
|
|
<header class="post-header wrapper">
|
|
|
|
<h2 class="post-title"><a href="{{ post.url }}" rel="bookmark">{{ post.title }}</a></h2>
|
2019-03-14 13:33:39 +01:00
|
|
|
<p class="public-date">vom <time class="post-date" datetime="{{ post.date | date: "%Y-%m-%d"}}">
|
2019-03-12 13:49:49 +01:00
|
|
|
{% assign m = post.date | date: "%-m" %}
|
|
|
|
{{ post.date | date: "%d" }}
|
|
|
|
{% case m %}
|
|
|
|
{% when '1' %}Januar
|
|
|
|
{% when '2' %}Februar
|
|
|
|
{% when '3' %}März
|
|
|
|
{% when '4' %}April
|
|
|
|
{% when '5' %}Mai
|
|
|
|
{% when '6' %}Juni
|
|
|
|
{% when '7' %}Juli
|
|
|
|
{% when '8' %}August
|
|
|
|
{% when '9' %}September
|
|
|
|
{% when '10' %}Oktober
|
|
|
|
{% when '11' %}November
|
|
|
|
{% when '12' %}Dezember
|
|
|
|
{% endcase %}
|
|
|
|
{{ post.date | date: "%Y" }}
|
2019-03-14 13:33:39 +01:00
|
|
|
</time>
|
|
|
|
{% if post.external-url %}
|
|
|
|
| <a href="{{ page.external-url }}">Org. Post</a>
|
|
|
|
{% endif %}</p>
|
|
|
|
</header>
|
|
|
|
<div class="post-content wrapper">
|
|
|
|
{{ post.content }}
|
|
|
|
</div>
|
2019-03-12 13:49:49 +01:00
|
|
|
</article>
|
|
|
|
{% endfor %}
|
|
|
|
{% include pagination.html %}
|