Update layout

This commit is contained in:
TheThomaas 2023-11-25 13:17:30 +01:00
parent 9e2e993ecf
commit d111251c6a

View file

@ -1,11 +1,10 @@
{% if postslist %}
<ul role="list">
<ul class="flow">
{% asyncEach post in postslist %}
<li>
<h2>
<a href="{{ post.url | url }}">{{ post.data.title }}</a>
</h2>
{% set definedDate = post.date %} {% include "partials/date.njk" %}
<h3>{% set definedDate = post.date %}
<a href="{{ post.url | url }}">{{ post.data.title }} ({% include "partials/date.njk" %})</a>
</h3>
<p>{{ post.data.description }}</p>
</li>
{% endeach %}