{% extends '/cards/note/view.html.twig' %} {% block note_author_repeated %} {# Microformat's h-card properties indicates a face icon is a "u-logo" #} {% if fullname is not null %} {{ fullname }} {% else %} {{ nickname }} {% endif %} {{ nickname }} {{ "repeated the following note" | trans }} {% endblock note_author_repeated %} {% macro macro_note(note, replies) %} {% set nickname = note.getActorNickname() %} {% set fullname = note.getActorFullname() %} {% set actor_url = note.getActor().getUrl() %} {% set additional_vars = handle_event('GetAdditionalTemplateVars', {'note_id': note.getId(), 'actor_id': note.getActorId()}) %} {% if additional_vars['is_repeat'] %}
{{ block('note_sidebar') }}
{{ block('note_author_repeated') }} {{ block('note_actions') }}
{{ block('note_replies') }}
{% else %}
{{ block('note_sidebar') }}
{{ block('note_author') }} {{ block('note_actions') }}
{{ block('note_replies') }}
{% endif %} {% endmacro macro_note %}