{% extends "base" %} {% block title %} {{ user.display_name }} {% endblock title %} {% block content %}

{{ user.display_name }} {% if user.is_admin %} Admin {% endif %} {% if is_self %} It is you {% endif %}

{% if is_self %} Edit your profile {% endif %}
{{ n_followers }} follower{{ n_followers | pluralize }}
{{ user.summary | safe }}

Latest articles

{% for article in recents %}

{{ article.post.title }}

{{ article.post.content | escape | truncate(length=200) }}…

By {{ article.author.display_name }} ⋅ {{ article.date | date(format="%B %e") }}

{% endfor %} {% endblock content %}