16 lines
479 B
Text
16 lines
479 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 | readableDate }}: </strong>
|
|
<a href="https://{{album.url}}" title="{{album.title | escape}}">
|
|
{{album.title}}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|