forgot to add the update page fix

This commit is contained in:
onomanapeia 2024-11-15 17:36:05 -06:00
parent 4110f2257b
commit f8cf349d25

View file

@ -7,7 +7,9 @@ menu-title: updates
show_footer: true
---
<ul>
{% for update in site.updates reversed %}
{% for update in site.posts %}
{% if update.path contains '/updates/' %}
<li><b>{{ update.date | date: "%Y.%m.%d" }}</b>: {{ update.content | remove: '<p>' | remove: '</p>' }}</li>
{% endif %}
{% endfor %}
</ul>