update list styling
All checks were successful
/ deploy (push) Successful in 16s

This commit is contained in:
Daniel Fichtinger 2025-07-15 23:20:39 -04:00
parent 2b00dc953d
commit 66023c7c3c
2 changed files with 81 additions and 7 deletions

23
templates/post_list.html Normal file
View file

@ -0,0 +1,23 @@
{% extends "base.html" %} {% block content %}
{% if metadata.show_title %}
{% include "title.html" %}
{% endif %}
<article>{{ content | safe }}</article>
{% if post_list %}
<div class="post-list">
<ul>
{% for item in post_list %}
<li>
<time class="post-list-date" datetime="{{ item.metadata.date | safe }}"
>{{ item.metadata.date | safe}}</time>: <a href="/{{ item.url }}"
>{{ item.metadata.title }}</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %} {% endblock %}