chore: naming consistency

This commit is contained in:
Cory Dransfeldt 2024-05-06 11:39:51 -07:00
parent 20ed56b848
commit 65ef21f315
No known key found for this signature in database
3 changed files with 2 additions and 2 deletions

View file

@ -1,16 +0,0 @@
{% 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 %}