truckin along, we got a postlist now

This commit is contained in:
2026-02-18 16:29:21 -08:00
parent 42ce6ceb6f
commit ca8d4a31cd
17 changed files with 526 additions and 69 deletions

View File

@ -1,12 +1,12 @@
<ol>
<ol id="postlist">
{% for post in postlist %}
<li>
<a href="{{ post.url }}">
<li class="post">
<a class="postlink" 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>
<ul class="posttags">
{% for tag in post.data.tags | removeBasicTags %}
<li>{{ tag }}</li>
{% endfor %}