chore: no underline for popular post links

This commit is contained in:
Cory Dransfeldt 2024-01-01 18:27:49 -08:00
parent 7ea025ebf5
commit 973473f83d
No known key found for this signature in database

View file

@ -7,7 +7,7 @@
<ul>
{% for post in posts limit: 5 %}
<li>
<a href="{{post.url}}" title="{{ post.data.title | escape}}">
<a class="no-underline" href="{{post.url}}" title="{{ post.data.title | escape}}">
{{ post.data.title }}
</a>
</li>