{% for post in posts %}
- <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="subtitle is-6">
- {{ locale.format_date(post.published_at, shorter=True, relative=relative) }}
+ <p>
+ <h5 class="title is-5">
+ <a {% if "lightningwirelabs.com" in post.tags %}class="has-text-lwl"{% end %} href="/blog/{{ post.slug }}">
+ {{ post.title }}
+ </a>
+ </h5>
- {% if "lightningwirelabs.com" in post.tags %}
- <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 %}
+ <h6 class="subtitle is-6">
+ {{ locale.format_date(post.published_at, shorter=True, relative=relative) }}
+
+ {% if "lightningwirelabs.com" in post.tags %}
+ <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 %}
+ </h6>
</p>
{% end %}