24 lines
634 B
HTML
24 lines
634 B
HTML
---
|
|
order: 3
|
|
---
|
|
<article id="posts">
|
|
<nav>
|
|
<ul role="list">
|
|
{% for post in collections.posts reversed %}
|
|
<li>
|
|
<a href="{{post.url}}">
|
|
</svg>{{post.fileSlug}}
|
|
<p>published:<time datetime="{{post.data.date|ISO}}">{{post.data.date|readable}}</time></p>
|
|
{% if post.data.modified %}
|
|
<p>last modified:<time datetime="{{post.data.modified}}">{{post.data.modified|readable}}</time></p>
|
|
{%endif%}
|
|
<p>{{post.data.description}}</p>
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</nav>
|
|
</article>
|
|
<article>
|
|
<p>...I'll eventually write more stuff worth talking about on here when the motivation strikes.</p>
|
|
</article>
|