Update layout
This commit is contained in:
parent
9e2e993ecf
commit
d111251c6a
|
|
@ -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 %}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue