16 lines
512 B
Text
16 lines
512 B
Text
{% if albumReleases.size > 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="{{ album.title | escape}} by {{ album.artist | escape}}">
|
|
{{ album.title }} by {{ album.artist }}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|