site/templates/post.html
Simon Bruder 4972e93119
Do not include episode number in title
It confuses many people what SCH001 means and it also looks somewhat
weird, especially since we do not refer to the episode numbers.
2022-01-06 19:46:02 +01:00

15 lines
526 B
HTML

<article>
<h2 class="title mb-2"><a href="{{ page.permalink | safe }}">{{ page.title }}</a></h2>
<div class="post-meta"><span>{% if page.date %}Veröffentlicht am {{ page.date | date(format="%d.%m.%Y") }}{% endif %}</span></div>
<div class="content mt-5">
{% if page.extra.subtitle %}<p><strong>{{ page.extra.subtitle }}</strong></p>{% endif %}
{% if page.description %}<p>{{ page.description | safe }}</p>{% endif %}
{% include "podlove-player.html" %}
{{ page.content | safe }}
</div>
</article>