<nav class="breadcrumb is-medium" aria-label="breadcrumbs">
<ul>
<li>
- <a href="/">Home</a>
+ <a href="/">{{ _("Home") }}</a>
</li>
<li>
- <a href="/blog">Blog</a>
+ <a href="/blog">{{ _("Blog") }}</a>
</li>
<li class="is-active">
<a href="#" aria-current="page">{{ post.title }}</a>
{{ locale.format_date(post.published_at, shorter=True, relative=False) }}
{% end %}
{% elif post.published_at %}
- <span class="text-danger">{{ _("Scheduled to be published %s") % locale.format_date(post.published_at, relative=False) }}</span>
+ {{ _("Scheduled to be published %s") % locale.format_date(post.published_at, relative=False) }}
{% else %}
- {{ _("Not published") }}
+ {{ _("Not published, yet") }}
{% end %}
</h6>
</div>