Move from Hugo to Zola
This commit is contained in:
parent
aa8a58141d
commit
4c1aa547e1
51 changed files with 353 additions and 563 deletions
19
templates/blog-page.html
Normal file
19
templates/blog-page.html
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<article>
|
||||
<div class="dates">
|
||||
<p>
|
||||
<time datetime="{{ page.date }}">{{ page.date | date(format="%e. %B %Y", locale="de_DE") }}</time>
|
||||
</p>
|
||||
{% if page.updated %}
|
||||
<p>
|
||||
Aktualisiert: <time datetime="{{ page.updated }}">{{ page.updated | date(format="%e. %B %Y", locale="de_DE")
|
||||
}}</time>
|
||||
</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
<h1>{{ page.title }}</h1>
|
||||
<p class="lead">{{ page.description }}</p>
|
||||
{{ page.content | safe }}
|
||||
</article>
|
||||
{% endblock content %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue