slow structuring

This commit is contained in:
2026-02-17 21:11:03 -08:00
parent e230ebbc33
commit e4342e764f
14 changed files with 866 additions and 17 deletions

17
_includes/postlist.njk Normal file
View File

@ -0,0 +1,17 @@
<ol>
{% for post in postlist %}
<li>
<a href="{{ post.url }}">
{% if post.data.image %}
<img src="/img/{{ post.data.image.src }}" alt="{{ post.data.image.alt }}">
{% endif %}
<h2>{{ post.data.title }}</h2>
<ul>
{% for tag in post.data.tags %}
<li>{{ tag }}</li>
{% endfor %}
</ul>
</a>
</li>
{% endfor %}
<ol>