2022-06-22 13:11:22 -05:00
|
|
|
{%- import "utils.html" as utils with context -%}
|
|
|
|
{% extends "layout.html" %}
|
2022-06-26 14:54:07 -05:00
|
|
|
|
|
|
|
{% block head %}
|
2022-07-01 12:35:34 -05:00
|
|
|
{% if outbox_object %}
|
2022-06-26 14:54:07 -05:00
|
|
|
<link rel="alternate" href="{{ request.url }}" type="application/activity+json">
|
|
|
|
<meta name="description" content="{{ outbox_object.content | html2text | trim | truncate(50) }}">
|
|
|
|
<meta content="article" property="og:type" />
|
|
|
|
<meta content="{{ outbox_object.url }}" property="og:url" />
|
|
|
|
<meta content="{{ local_actor.display_name }}'s microblog" property="og:site_name" />
|
|
|
|
<meta content="Note" property="og:title" />
|
|
|
|
<meta content="{{ outbox_object.content | html2text | trim | truncate(50) }}" property="og:description" />
|
|
|
|
<meta content="{{ local_actor.icon_url }}" property="og:image" />
|
|
|
|
<meta content="summary" property="twitter:card" />
|
2022-07-01 12:35:34 -05:00
|
|
|
{% endif %}
|
2022-06-26 14:54:07 -05:00
|
|
|
{% endblock %}
|
|
|
|
|
2022-06-22 13:11:22 -05:00
|
|
|
{% block content %}
|
|
|
|
{% include "header.html" %}
|
|
|
|
|
2022-06-24 16:09:37 -05:00
|
|
|
{% macro display_replies_tree(replies_tree_node) %}
|
|
|
|
|
2022-06-25 03:20:07 -05:00
|
|
|
{% if replies_tree_node.is_requested %}
|
2022-07-09 01:32:17 -05:00
|
|
|
{{ utils.display_object(replies_tree_node.ap_object, likes=likes, shares=shares, expanded=not replies_tree_node.is_root) }}
|
2022-06-25 03:20:07 -05:00
|
|
|
{% else %}
|
|
|
|
{{ utils.display_object(replies_tree_node.ap_object) }}
|
|
|
|
{% endif %}
|
|
|
|
|
2022-06-24 16:09:37 -05:00
|
|
|
{% for child in replies_tree_node.children %}
|
|
|
|
{{ display_replies_tree(child) }}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% endmacro %}
|
|
|
|
|
|
|
|
{{ display_replies_tree(replies_tree) }}
|
2022-06-22 13:11:22 -05:00
|
|
|
|
|
|
|
{% endblock %}
|