{% extends 'stdgrid.html.twig' %}
{% set id = actor.getId() %}
{% set nickname = actor.getNickname() %}
{% set avatar = actor.getAvatarUrl() %}
{% block title %}{{ nickname }}'s profile{% endblock %}
{% block body %}
{{ nickname }}
{% set actor_tags = actor.getSelfTags() %}
{% if actor_tags %}
{% for tag in actor_tags %}
#{{ tag }}
{% endfor %}
{% else %}
{{ '(No tags)' | trans }}
{% endif %}
{% set actor_bio = actor.getBio() %}
{% if actor_bio %}
{{ actor_bio }}
{% else %}
{{ '(No bio)' | trans }}
{% endif %}
{% if notes is defined and notes is not empty %}
{% for conversation in notes %}
{% include '/note/view.html.twig' with {'note': conversation['note'], 'have_user': have_user, 'replies': conversation['replies']} only %}
{% endfor %}
{% else %}