eeb42ef8ea
[ENTITY][Note] Add getAllNotesByActor [TWIG] Actor profile page now renders all notes by the actor
31 lines
1.1 KiB
Twig
31 lines
1.1 KiB
Twig
{% extends 'stdgrid.html.twig' %}
|
|
{% import '/cards/note/view.html.twig' as noteView %}
|
|
|
|
{% block title %}{{ actor.getNickname() ~ '\'s profile' | trans }}{% endblock %}
|
|
|
|
{% block stylesheets %}
|
|
{{ parent() }}
|
|
<link rel="stylesheet" href="{{ asset('assets/default_theme/css/pages/feeds.css') }}" type="text/css">
|
|
{% endblock stylesheets %}
|
|
|
|
{% block body %}
|
|
{% block profile_view %}
|
|
{% include 'cards/profile/view.html.twig' %}
|
|
{% endblock profile_view %}
|
|
|
|
<main class="feed" tabindex="0" role="feed">
|
|
<div class="h-feed hfeed notes">
|
|
{% if notes is defined and notes is not empty %}
|
|
{% for note in notes %}
|
|
{% block current_note %}
|
|
{{ noteView.macro_note(note, null) }}
|
|
<hr tabindex="0" title="{{ 'End of note and replies.' | trans }}">
|
|
{% endblock current_note %}
|
|
{% endfor %}
|
|
{% else %}
|
|
<div id="empty-notes"><h1>{% trans %}No notes here.{% endtrans %}</h1></div>
|
|
{% endif %}
|
|
</div>
|
|
</main>
|
|
{% endblock body %}
|