feat: source upcoming albums from albums table

This commit is contained in:
Cory Dransfeldt 2024-05-11 10:58:18 -07:00
parent c63cdecff3
commit 925fa4d979
No known key found for this signature in database
5 changed files with 51 additions and 49 deletions

View file

@ -6,9 +6,9 @@
<ul class="link-list">
{% for album in albumReleases %}
<li>
<strong>{{ album.date | readableDate }}: </strong>
<a href="https://{{album.url}}" title="{{album.title | escape}}">
{{album.title}}
<strong>{{ album.date }}: </strong>
<a href="{{ album.url}}" title="{{ album.title | escape}} by {{ album.artist | escape}}">
{{ album.title }} by {{ album.artist }}
</a>
</li>
{% endfor %}