chore: date formatting

This commit is contained in:
Cory Dransfeldt 2023-06-08 14:15:31 -07:00
parent d2a143f28f
commit b2f2155682
No known key found for this signature in database
5 changed files with 8 additions and 4 deletions

View file

@ -97,8 +97,9 @@ layout: main
<ul class="list-inside list-disc pl-5 md:pl-10">
{% for album in albumReleases %}
<li class="mt-1.5 mb-2">
<span class="font-bold">{{ album.startDate | readableDate }}: </span>
<a href="https://{{album.location}}" title="{{album.summary | escape}}">
{{ album.startDate | date: "%m.%d.%Y" }}: {{album.summary}}
{{album.summary}}
</a>
</li>
{% endfor %}