website/_src/pages/blog.html

21 lines
No EOL
633 B
HTML

---
title: "Blog"
order: 3
icon: "M 4 2 L 28 2 L 28 30 L 4 30 Z M 8 8 L 24 8 L 24 6 L 8 6 Z M 8 14 L 24 14 L 24 12 L 8 12 Z M 8 20 L 20 20 L 20 18
L 8 18 Z"
---
<section id="posts">
<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 edited:<time datetime="{{post.data.modified}}">{{post.data.modified|readable}}</time></p>
{%endif%}
<p>{{post.data.description}}</p>
</a>
</li>
{% endfor %}
</ul>
</section>