{% extends 'stdgrid.html.twig' %} {% set id = actor.getId() %} {% set nickname = actor.getNickname() %} {% set actor_bio = actor.getBio() %} {% set actor_tags = actor.getSelfTags() %} {% set avatar = actor.getAvatarUrl() %} {% block title %}{{ nickname }}'s profile{% endblock %} {% block body %}
{{ nickname }}{{ '\'s avatar.' | trans }}
{{ nickname }}
{% 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 %}

{% trans %}No notes here.{% endtrans %}

{% endif %}
{% endblock body %}