Files
leecat.art/_includes/postlist.njk

18 lines
348 B
Plaintext
Raw Normal View History

2026-02-17 21:11:03 -08:00
<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>