feat: album releases grid

This commit is contained in:
Cory Dransfeldt 2024-06-04 11:57:01 -07:00
parent 6d5e493dbe
commit 3917434062
No known key found for this signature in database
6 changed files with 30 additions and 35 deletions

View file

@ -1,18 +0,0 @@
<h2 id="album-releases" class="section-header flex-centered">
{% tablericon "calendar-time" "Anticipated albums" %}
Anticipated albums
</h2>
<ul class="link-list">
{% for album in albumReleases %}
<li>
<strong>{{ album.date }}: </strong>
<a href="{{ album.url}}" title="Learn more about {{ album.title | escape}} by {{ album.artist | escape}}">
{{ album.title }}
</a>
<span> by </span>
<a href="{{ album.artist_url }}" title="Learn more about {{ album.artist | escape }}">
{{ album.artist }}
</a>
</li>
{% endfor %}
</ul>