Replace bootstrap with Bulma

This commit is contained in:
Oliver Davies 2017-08-06 19:01:22 +01:00
parent 4e851429d8
commit fbec98acaf
20 changed files with 126 additions and 138 deletions

View file

@ -1,6 +1,6 @@
<div class="post-pager is-flex">
<div class="post-pager is-clearfix is-flex mt-2">
{% if page.previous_post %}
<div class="is-half">
<div class="is-half flex">
<a href="{{ page.previous_post.url }}">
&laquo; {{ page.previous_post.title }}
</a>
@ -8,7 +8,7 @@
{% endif %}
{% if page.next_post %}
<div class="is-half text-right">
<div class="is-half flex has-text-right">
<a href="{{ page.next_post.url }}">
{{ page.next_post.title }} &raquo;
</a>

View file

@ -1,8 +1,9 @@
{% if page.tags %}
<p class="tags">
Tags:
<div class="tags">
{% for tag in page.tags %}
<a href="{{ site.url }}/blog/tags/{{ tag|url_encode(true) }}">{{ tag }}</a>{% if not loop.last %}, {% endif %}
<a href="{{ site.url }}/blog/tags/{{ tag|url_encode(true) }}" class="tag is-light is-borderless">
{{- tag -}}
</a>
{% endfor %}
</p>
</div>
{% endif %}