2021-09-18 04:33:02 +09:00
|
|
|
{% extends 'stdgrid.html.twig' %}
|
|
|
|
|
2021-09-22 22:10:36 +09:00
|
|
|
{% block title %}{{ actor.getNickname() }}'s profile{% endblock %}
|
2021-09-18 04:33:02 +09:00
|
|
|
|
|
|
|
{% block body %}
|
2021-09-22 22:10:36 +09:00
|
|
|
{% block profile_view %}{% include 'cards/profile/view.html.twig' %}{% endblock profile_view %}
|
2021-09-20 22:38:39 +09:00
|
|
|
|
2021-11-26 22:05:23 +09:00
|
|
|
<main class="feed" tabindex="0" role="feed">
|
2021-09-18 04:33:02 +09:00
|
|
|
<div class="h-feed hfeed notes">
|
|
|
|
{% 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 %}
|
|
|
|
<hr tabindex="0" title="{{ 'End of note and replies.' | trans }}">
|
|
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
|
|
<div id="empty-notes"><h1>{% trans %}No notes here.{% endtrans %}</h1></div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</main>
|
2021-11-26 22:05:23 +09:00
|
|
|
{% endblock body %}
|