old website

This commit is contained in:
sundae 2025-06-11 10:09:06 +03:00
commit 218487dc22
No known key found for this signature in database
557 changed files with 7054 additions and 0 deletions

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

@ -0,0 +1,18 @@
---
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>