website/_src/pages/blog.html

25 lines
707 B
HTML
Raw Normal View History

2025-06-11 09:36:54 +03:00
---
title: "Blog"
order: 3
2025-09-09 18:12:57 +03:00
icon: "m5 3h15l7 7v20H5zm5 22h12v-3H10zm0-6h12v-3H10zm0-6h9v-3h-9z"
2025-06-11 09:36:54 +03:00
---
<section id="posts">
<ul role="list">
2025-06-11 09:36:54 +03:00
{% for post in collections.posts reversed %}
<li>
2025-10-19 15:55:35 +03:00
<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 %}
2025-10-19 15:55:35 +03:00
<p>last modified:<time datetime="{{post.data.modified}}">{{post.data.modified|readable}}</time></p>
{%endif%}
2025-06-11 09:36:54 +03:00
<p>{{post.data.description}}</p>
</a>
</li>
{% endfor %}
2025-10-19 15:55:35 +03:00
<article>
<p>...I'll eventually write more stuff worth talking about on here when the motivation strikes.</p>
</article>
2025-06-11 09:36:54 +03:00
</ul>
2025-10-19 15:55:35 +03:00
</section>