2021-09-17 20:33:02 +01:00
|
|
|
{% extends 'stdgrid.html.twig' %}
|
|
|
|
|
2021-09-18 03:22:27 +01:00
|
|
|
{% set id = actor.id %}
|
|
|
|
{% set nick = actor.nickname %}
|
2021-09-17 20:33:02 +01:00
|
|
|
|
|
|
|
{# TODO: how to get avatar in here? Tags and rest of profile info? #}
|
2021-09-18 03:22:27 +01:00
|
|
|
{% set avatar = actor.nickname %}
|
2021-09-17 20:33:02 +01:00
|
|
|
|
|
|
|
{% block title %}{{ nick }}'s profile{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<section class="section-widget section-widget-padded">
|
|
|
|
<div class="section-title">
|
|
|
|
<img class="icon icon-avatar" src="{{ avatar }}" alt="{{ nick }}'s avatar">{{ nick }}
|
|
|
|
</div>
|
|
|
|
{#
|
|
|
|
|
|
|
|
<div class="actor-nickname-and-tags">
|
|
|
|
|
|
|
|
{% set actor_tags = actor.getSelfTags() %}
|
|
|
|
|
|
|
|
<div class="tags">
|
|
|
|
{% if actor_tags %}
|
|
|
|
{% for tag in actor_tags %}
|
|
|
|
<a href='#'><i> #{{ tag }} </i></a>
|
|
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
|
|
<i> {{ '(No tags)' | trans }} </i>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% set actor_bio = actor.getBio() %}
|
|
|
|
<div class="actor-bio">
|
|
|
|
{% if actor_bio %}
|
|
|
|
<p>{{ actor_bio }}</p>
|
|
|
|
{% else %}
|
|
|
|
<p>{{ '(No bio)' | trans }}</p>
|
|
|
|
{% endif %}
|
|
|
|
</div>#}
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<main class="timeline" tabindex="0" role="feed">
|
|
|
|
<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>
|
|
|
|
{% endblock body %}
|