{% import ipfire.accounts as accounts %}

{{ post.title }}

{{ _("by") }} {% if isinstance(post.author, accounts.Account) %} {{ post.author.name }}, {% else %} {{ post.author }}, {% end %} {% if post.is_published() %} {% if post.updated_at and post.updated_at > post.published_at %} {{ locale.format_date(post.published_at, shorter=True, relative=False) }}, {{ _("Updated %s") % locale.format_date(post.updated_at, shorter=True) }} {% else %} {{ locale.format_date(post.published_at, shorter=True, relative=False) }} {% end %} {% elif post.published_at %} {{ _("Scheduled to be published %s") % locale.format_date(post.published_at, relative=False) }} {% else %} {{ _("Not published") }} {% end %}

{% if not post.is_published() and post.is_editable(current_user) %}
{% end %}
{% raw post.html %}
{% if "lightningwirelabs.com" in post.tags and post.link %} Go to Lightning Wire Labs {% end %} {% if post.release %} {{ _("Download") }} {% end %} {% if post.release or "donate" in post.tags %} {{ _("Donate") }} {% end %}