{% extends "base" %} {% import "macros" as macros %} {% block title %} {{ article.post.title }} {% endblock title %} {% block header %} {{ blog.title }} {% endblock header %} {% block content %}

{{ article.post.title }}

{{ "Written by {{ link_1 }}{{ url }}{{ link_2 }}{{ name | escape }}{{ link_3 }}" | _( link_1='', name=author.name, link_3="" ) }}{{ date | date(format="%B %e, %Y") }}

{{ article.post.content | safe }}

{{ "This article is under the {{ license }} license." | _(license=article.post.license) }}

{% if account %}

{{ n_reshares }}

{% if has_reshared %} {% else %} {% endif %}
{% else %}

{{ "Login or use your Fediverse account to interact with this article" | _ }}

{% endif %}

{{ "Comments" | _ }}

{% if account %}
{% if previous %} {% endif %} {# Ugly, but we don't have the choice if we don't want weird paddings #}
{% endif %}
{% for comment in comments %} {{ macros::comment(comm=comment) }} {% endfor %}
{% endblock content %}