{% extends "base" %} {% import "macros" as macros %} {% 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 %} {{ macros::post_card(article=article) }} {% endfor %}
{% endblock content %}