dates are muted

This commit is contained in:
Lewis Wynne 2026-05-02 18:57:56 +01:00
parent 4825a52edd
commit 5b1939eaa0

View file

@ -8,14 +8,14 @@
{% set blog = get_section(path="blog/_index.md") %} {% set blog = get_section(path="blog/_index.md") %}
{% for post in blog.pages %} {% for post in blog.pages %}
{{ post.date }}&emsp;<a href="{{ post.permalink }}">{{ post.title }}</a><br> <span class="muted">{{ post.date }}</span>&emsp;<a href="{{ post.permalink }}">{{ post.title }}</a><br>
{% endfor %} {% endfor %}
<p>Reading</p> <p>Reading</p>
{% set reading = get_section(path="reading/_index.md") %} {% set reading = get_section(path="reading/_index.md") %}
{% for post in reading.pages %} {% for post in reading.pages %}
{{ post.date}}&emsp;<a href="{{ post.permalink }}">{{ post.title }}</a><br> <span class="muted">{{ post.date}}</span>&emsp;<a href="{{ post.permalink }}">{{ post.title }}</a><br>
{% endfor %} {% endfor %}
{% endblock %} {% endblock %}