updated default theme

This commit is contained in:
Bastian Venthur
2023-06-16 09:45:05 +02:00
parent 6708c6c80a
commit 7e22f00ac5
3 changed files with 18 additions and 15 deletions

View File

@@ -3,18 +3,20 @@
{% block title %}{{ site.title }}{% endblock %}
{% block content %}
{% for entry in archive[:10] %}
{% if entry.title %}
<h1><a href="{{entry.dst}}">{{entry.title}}</a></h1>
{% for entry in archive[:15] %}
{% if entry.description %}
<p>— {{ entry.description }}</p>
{% endif %}
{% endif %}
<p>Written on {{ entry.date.date() }}.</p>
<article>
<header>
<time datetime="{{ entry.date }}">{{ entry.date.date() }}</time>
<div>
<h2><a href="{{ entry.dst }}">{{ entry.title }}</a></h2>
{% if entry.description %}
<p> {{ entry.description }}</p>
{% endif %}
</div>
</header>
</article>
{% endfor %}