Fix link styling
This commit is contained in:
parent
05c57d89e7
commit
2ca5c15e58
|
@ -19,7 +19,7 @@ use:
|
||||||
{% for tag, posts in data.posts_tags %}
|
{% for tag, posts in data.posts_tags %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<a href="{{ site.url }}/blog/tags/{{ tag|url_encode(true) }}">
|
<a href="{{ site.url }}/blog/tags/{{ tag|url_encode(true) }}" class="link">
|
||||||
{{ tag }}
|
{{ tag }}
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
|
|
|
@ -27,7 +27,7 @@ generator:
|
||||||
{% for post in page.tag_posts %}
|
{% for post in page.tag_posts %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<a href="{{ post.url }}">
|
<a href="{{ post.url }}" class="link">
|
||||||
{{ post.title }}
|
{{ post.title }}
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
|
|
Reference in a new issue