2021-09-18 12:54:35 +09:00
|
|
|
{% set actor_nickname = actor.getNickname() %}
|
|
|
|
{% set actor_avatar = actor.getAvatarUrl() %}
|
2021-09-18 05:51:55 +09:00
|
|
|
{% set actor_tags = actor.getSelfTags() %}
|
|
|
|
{% set actor_bio = actor.getBio() %}
|
2021-09-18 04:33:02 +09:00
|
|
|
|
2021-09-22 22:10:36 +09:00
|
|
|
{% block profile_view %}
|
2021-09-25 20:51:25 +09:00
|
|
|
<section id='profile-{{ actor.id }}' class='profile' title="{{ actor_nickname }}'s {{ 'profile information.' | trans }}">
|
2021-09-23 21:53:02 +09:00
|
|
|
<a href="{{ path('actor_view_nickname', {'nickname' : actor_nickname}) }}">
|
2021-09-20 22:38:39 +09:00
|
|
|
<div class="profile-info">
|
2021-09-23 21:53:02 +09:00
|
|
|
<img src='{{ actor_avatar }}' class="profile-avatar" alt="{{ actor_nickname }}{{ '\'s avatar.' | trans }}">
|
2021-09-26 06:30:46 +09:00
|
|
|
<strong class="profile-info-nickname" title="{{ actor_nickname }}{{ '\'s nickname.' | trans }}">{{ actor_nickname }}</strong>
|
2021-09-18 04:33:02 +09:00
|
|
|
|
2021-09-23 01:20:06 +09:00
|
|
|
<section class="profile-info-bio">
|
2021-09-18 05:51:55 +09:00
|
|
|
{% if actor_bio %}
|
|
|
|
<p>{{ actor_bio }}</p>
|
|
|
|
{% else %}
|
|
|
|
<p>{{ '(No bio)' | trans }}</p>
|
|
|
|
{% endif %}
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</a>
|
2021-09-23 21:53:02 +09:00
|
|
|
|
|
|
|
<section class="profile-info-stats">
|
|
|
|
<div><strong>{{ 'Subscriptions' | trans }}</strong>{{ actor.getSubscriptionsCount() }}</div>
|
|
|
|
<div><strong>{{ 'Subscribers' | trans }}</strong>{{ actor.getSubscribersCount() }}</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<nav class="profile-info-tags">
|
|
|
|
{% if actor_tags %}
|
|
|
|
{% for tag in actor_tags %}
|
|
|
|
<a href='#'><em>#{{ tag }}</em></a>
|
|
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
|
|
{{ '(No tags)' | trans }}
|
|
|
|
{% endif %}
|
|
|
|
</nav>
|
2021-09-25 19:17:56 +09:00
|
|
|
|
2021-09-25 22:20:47 +09:00
|
|
|
{% for block in handle_event('AppendCardProfile', {'actor': actor}) %}
|
2021-09-25 19:17:56 +09:00
|
|
|
{{ block | raw }}
|
|
|
|
{% endfor %}
|
2021-09-22 22:10:36 +09:00
|
|
|
</section>
|
2021-09-20 22:38:39 +09:00
|
|
|
|
2021-09-22 22:10:36 +09:00
|
|
|
<hr>
|
|
|
|
{% endblock profile_view %}
|