yay website

This commit is contained in:
sundae 2025-06-11 09:36:54 +03:00
parent 623e26a808
commit 4d44fd94a2
No known key found for this signature in database
585 changed files with 5066 additions and 0 deletions

20
_src/pages/blog.html Normal file
View file

@ -0,0 +1,20 @@
---
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>
{% 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>