{% for post in posts %}
- <h6 class="mb-0">
- <a {% if "lightningwirelabs.com" in post.tags %}class="text-lwl"{% end %} href="/blog/{{ post.slug }}">{{ post.title }}</a>
+ <h6 class="title is-6">
+ <a {% if "lightningwirelabs.com" in post.tags %}class="has-text-lwl"{% end %} href="/blog/{{ post.slug }}">{{ post.title }}</a>
</h6>
-
- <p class="text-muted small">
+ <p class="subtitle is-6">
{{ locale.format_date(post.published_at, shorter=True, relative=relative) }}
{% if "lightningwirelabs.com" in post.tags %}
- <span class="text-lwl">{{ _("by Lightning Wire Labs") }}</span>
+ <span class="has-text-lwl">{{ _("by Lightning Wire Labs") }}</span>
{% elif show_author and post.author %}
<a href="/blog/authors/{{ post.author.uid }}">{{ _("by %s") % post.author }}</a>
{% end %}