chore: drop album releases underlines

This commit is contained in:
Cory Dransfeldt 2024-01-02 09:41:46 -08:00 committed by GitHub
parent da74aeee2b
commit 605529c3f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,10 +7,10 @@
{% for album in albumReleases %} {% for album in albumReleases %}
<li> <li>
<strong>{{ album.date | readableDate }}: </strong> <strong>{{ album.date | readableDate }}: </strong>
<a href="https://{{album.url}}" title="{{album.title | escape}}"> <a class="no-underline" href="https://{{album.url}}" title="{{album.title | escape}}">
{{album.title}} {{album.title}}
</a> </a>
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>
{% endif %} {% endif %}