{%- import "utils.html" as utils with context -%} {% extends "layout.html" %} {% block head %} {% if outbox_object %} {% if outbox_object.content %} {% set excerpt = outbox_object.content | html2text | trim | truncate(50) %} {% else %} {% set excerpt = outbox_object.summary | html2text | trim | truncate(50) %} {% endif %} {% if outbox_object.name %}{{ outbox_object.name }}{% else %}{{ local_actor.display_name }}: "{{ excerpt }}"{% endif %} {% endif %} {% endblock %} {% block content %} {% if outbox_object %} {% include "header.html" %} {% endif %} {% macro display_replies_tree(replies_tree_node) %} {% if replies_tree_node.is_requested %} {{ utils.display_object(replies_tree_node.ap_object, likes=likes, shares=shares, webmentions=webmentions, expanded=not replies_tree_node.is_root, is_object_page=True, is_h_entry=False) }} {% else %} {% if replies_tree_node.wm_reply %} {# u-comment h-cite is displayed by default for webmention #} {{ utils.display_webmention_reply(replies_tree_node.wm_reply) }} {% else %}
{{ utils.display_object(replies_tree_node.ap_object, is_h_entry=False) }}
{% endif %} {% endif %} {% for child in replies_tree_node.children %} {{ display_replies_tree(child) }} {% endfor %} {% endmacro %}
{{ display_replies_tree(replies_tree) }}
{% endblock %}