microblog.pub/app/templates/object.html

57 lines
2.1 KiB
HTML
Raw Normal View History

2022-06-22 20:11:22 +02:00
{%- import "utils.html" as utils with context -%}
{% extends "layout.html" %}
2022-06-26 21:54:07 +02:00
{% block head %}
2022-07-01 19:35:34 +02:00
{% 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 %}
2022-07-25 22:51:53 +02:00
<title>{% if outbox_object.name %}{{ outbox_object.name }}{% else %}{{ local_actor.display_name }}: "{{ excerpt }}"{% endif %}</title>
2022-07-10 19:19:55 +02:00
<link rel="webmention" href="{{ url_for("webmention_endpoint") }}">
2022-06-26 21:54:07 +02:00
<link rel="alternate" href="{{ request.url }}" type="application/activity+json">
2022-07-15 20:01:55 +02:00
<meta name="description" content="{{ excerpt }}">
2022-06-26 21:54:07 +02:00
<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="{% if outbox_object.name %}{{ outbox_object.name }}{% else %}Note{% endif %}" property="og:title" />
2022-07-15 20:01:55 +02:00
<meta content="{{ excerpt }}" property="og:description" />
2022-06-26 21:54:07 +02:00
<meta content="{{ local_actor.icon_url }}" property="og:image" />
<meta content="summary" property="twitter:card" />
2022-07-01 19:35:34 +02:00
{% endif %}
2022-06-26 21:54:07 +02:00
{% endblock %}
2022-06-22 20:11:22 +02:00
{% block content %}
2022-08-02 20:40:43 +02:00
{% if outbox_object %}
2022-06-22 20:11:22 +02:00
{% include "header.html" %}
2022-08-02 20:40:43 +02:00
{% endif %}
2022-06-22 20:11:22 +02:00
2022-06-24 23:09:37 +02:00
{% macro display_replies_tree(replies_tree_node) %}
2022-06-25 10:20:07 +02:00
{% if replies_tree_node.is_requested %}
2022-11-20 11:12:34 +01:00
{{ 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) }}
2022-06-25 10:20:07 +02:00
{% else %}
{% if replies_tree_node.wm_reply %}
2022-11-20 11:12:34 +01:00
{# u-comment h-cite is displayed by default for webmention #}
{{ utils.display_webmention_reply(replies_tree_node.wm_reply) }}
{% else %}
2022-11-20 11:12:34 +01:00
<div class="u-comment h-cite">
{{ utils.display_object(replies_tree_node.ap_object, is_h_entry=False) }}
</div>
{% endif %}
2022-06-25 10:20:07 +02:00
{% endif %}
2022-06-24 23:09:37 +02:00
{% for child in replies_tree_node.children %}
{{ display_replies_tree(child) }}
{% endfor %}
{% endmacro %}
2022-11-20 11:12:34 +01:00
<div class="h-entry">
2022-06-24 23:09:37 +02:00
{{ display_replies_tree(replies_tree) }}
2022-11-20 11:12:34 +01:00
</div>
2022-06-22 20:11:22 +02:00
{% endblock %}