Remove old link classes

This commit is contained in:
Oliver Davies 2019-01-03 01:32:59 +00:00
parent a627849410
commit 606be23129
6 changed files with 8 additions and 8 deletions

View file

@ -22,7 +22,7 @@ use:
{% for tag, post_count in rows|sort|reverse %}
<tr>
<td>
<a href="{{ site.url }}/blog/tags/{{ tag|url_encode(true) }}" class="link">{{ tag }}</a>
<a href="{{ site.url }}/blog/tags/{{ tag|url_encode(true) }}">{{ tag }}</a>
</td>
<td>{{ post_count }}</td>
</tr>

View file

@ -26,7 +26,7 @@ generator:
{% for post in page.tag_posts %}
<tr>
<td>
<a href="{{ post.url }}" class="link">
<a href="{{ post.url }}">
{{ post.title }}
</a>
</td>