preliminary work for old theme re-implementation

This commit is contained in:
sundae 2025-06-18 18:38:20 +03:00
parent ee8bce1bd3
commit 8fc7eff67b
No known key found for this signature in database
41 changed files with 456 additions and 415 deletions

View file

@ -5,13 +5,14 @@ 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 8 18 Z"
---
<section id="posts">
<ul>
<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 %}
<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>