Use tachyons

This commit is contained in:
Oliver Davies 2017-09-05 00:27:07 +01:00
parent 10043c66ae
commit 0c27473422
9 changed files with 33 additions and 48 deletions

View file

@ -1,7 +1,7 @@
<div class="flex mt3">
{% if page.previous_post %}
<div class="w-50-ns">
<a href="{{ page.previous_post.url }}" class="blue1">
<a href="{{ page.previous_post.url }}" class="blue hover-blue">
&laquo; {{ page.previous_post.title }}
</a>
</div>
@ -9,7 +9,7 @@
{% if page.next_post %}
<div class="w-50-ns tr">
<a href="{{ page.next_post.url }}" class="blue1">
<a href="{{ page.next_post.url }}" class="blue hover-blue">
{{ page.next_post.title }} &raquo;
</a>
</div>

View file

@ -1,7 +1,7 @@
{% if page.tags %}
<div class="tags">
{% for tag in page.tags %}
<a href="{{ site.url }}/blog/tags/{{ tag|url_encode(true) }}" class="tag is-light is-borderless">
<a href="{{ site.url }}/blog/tags/{{ tag|url_encode(true) }}" class="blue">
{{- tag -}}
</a>
{% endfor %}