{% extends "base" %} {% block title %} {{ post.title }} {% endblock title %} {% block header %} {{ blog.title }} {% endblock header %} {% block content %}

{{ post.title }}

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

{{ post.content | safe }}

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

{{ n_reshares }}

{% if has_reshared %} {% else %} {% 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 %} {% if comment.author.display_name %} {% set comment_author_name = comment.author.display_name %} {% else %} {% set comment_author_name = comment.author.username %} {% endif %} {% endfor %}
{% endblock content %}