This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/_includes/partials/now/albumReleases.liquid
2023-12-28 08:28:31 -08:00

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 %}