16 lines
No EOL
432 B
Text
16 lines
No EOL
432 B
Text
{% if albumReleases.size > 0 %}
|
|
<h2 class="now__section--header">
|
|
{% tablericon "calendar-time" "Anticipated albums" %}
|
|
Anticipated albums
|
|
</h2>
|
|
<ul>
|
|
{% 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 %} |