chore: normalize and sanitize album release data

This commit is contained in:
Cory Dransfeldt 2023-09-01 10:51:00 -07:00
parent 99adcac392
commit 1c9e87c6f3
No known key found for this signature in database
2 changed files with 14 additions and 5 deletions

View file

@ -6,9 +6,9 @@
<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.summary}}
<span class="font-bold">{{ album.date | readableDate }}: </span>
<a href="https://{{album.url}}" title="{{album.title | escape}}">
{{album.title}}
</a>
</li>
{% endfor %}