website/_src/pages/blog.html

18 lines
477 B
HTML
Raw Permalink Normal View History

2025-06-11 10:09:06 +03:00
---
title: "Blog"
date: 2003-01-01
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>
{% for post in collections.posts reversed %}
<li>
<a href="{{post.url}}"></svg>{{post.data.title}}<time datetime="{{post.data.date | ISO }}">{{post.data.date
| humanReadable }}</time>
<p>{{post.data.description}}</p>
</a>
</li>
{% endfor %}
</ul>
</section>