2022-02-24 02:01:41 +09:00
|
|
|
{% extends 'collection/notes.html.twig' %}
|
2021-12-21 21:12:03 +09:00
|
|
|
|
2021-12-22 01:55:48 +09:00
|
|
|
{% set nickname = nickname|escape %}
|
2021-12-21 21:12:03 +09:00
|
|
|
{% block title %}{{ nickname }}{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
{% if actor is defined and actor is not null %}
|
|
|
|
{% block profile_view %}
|
2022-02-07 06:37:04 +09:00
|
|
|
{% include 'cards/blocks/profile.html.twig' with { 'actor': actor } only %}
|
2021-12-21 21:12:03 +09:00
|
|
|
{% endblock profile_view %}
|
|
|
|
|
2022-01-18 06:33:38 +09:00
|
|
|
{% if notes is defined %}
|
2022-02-24 02:01:41 +09:00
|
|
|
{{ parent() }}
|
2022-01-18 06:33:38 +09:00
|
|
|
{% endif %}
|
2021-12-21 21:12:03 +09:00
|
|
|
{% endif %}
|
|
|
|
{% endblock body %}
|