{% extends 'stdgrid.html.twig' %}
{% import '/cards/note/view.html.twig' as noteView %}
{% set nickname = nickname|escape %}
{% block title %}{% trans with {'%nick%': actor.getNickname()} %}%nick%'s profile{% endtrans %}{% endblock %}y
{% block stylesheets %}
{{ parent() }}
{% endblock stylesheets %}
{% block body %}
{% block profile_view %}
{% include 'cards/profile/view.html.twig' %}
{% endblock profile_view %}
{% if notes is defined and notes is not empty %}
{% for note in notes %}
{% block current_note %}
{{ noteView.macro_note(note, null) }}
{% endblock current_note %}
{% endfor %}
{% else %}