Fix link styling

This commit is contained in:
Oliver Davies 2018-05-31 11:31:29 +02:00
parent 05c57d89e7
commit 2ca5c15e58
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ use:
{% for tag, posts in data.posts_tags %}
<tr>
<td>
<a href="{{ site.url }}/blog/tags/{{ tag|url_encode(true) }}">
<a href="{{ site.url }}/blog/tags/{{ tag|url_encode(true) }}" class="link">
{{ tag }}
</a>
</td>

View file

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