nicojensen.de/_layouts/post.html
2021-06-21 18:50:40 +02:00

46 lines
No EOL
1.9 KiB
HTML

---
layout: default
---
<main id="post-container" class="single-post">
<article class="post">
<header class="post-header">
{% if page.featured-image %}{% include post-featured-image.html image=page.featured-image alt=page.featured-image-alt %}{% endif %}
<div class="post-title wrapper">
<h2>
{% if page.external-url %}
<a href="{{ page.external-url }}">{{ page.title }}</a>
{% else %}
{{ page.title }}
{% endif %}
</h2>
<p class="public-date">vom <time class="page-date" datetime="{{ page.date | date: "%Y-%m-%d"}}">
{% assign m = page.date | date: "%-m" %}
{{ page.date | date: "%d" }}
{% case m %}
{% when '1' %}Januar
{% when '2' %}Februar
{% when '3' %}M&auml;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 %}
{{ page.date | date: "%Y" }}
</time>
{% if page.external-url %}
&nbsp;|&nbsp;<a href="{{ page.external-url }}">Org. Post</a>
{% endif %}
</p>
</div>
</header>
<div class="post-content wrapper">
{{ content }}
</div>
</article>
</main>