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