{% extends "base.html" %} {% block title %}{{ user.display_name }} – {{ site.title }}{% endblock %} {% block og %} {% if user.bio %}{% endif %} {% endblock %} {% block content %}

{{ user.display_name }}

{% if user.is_owner %}Hovedbruker{% else %}Gjest{% endif %} {% if user.email %} · {{ user.email }}{% endif %}

{% if bio_html %}
{{ bio_html|safe }}
{% endif %}

Innlegg{% if posts %} ({{ posts|length }}){% endif %}

{% if not posts %}

Ingen innlegg ennå.

{% endif %} {% for post in posts %}

{{ post.title }}

{% endfor %} {% endblock %}