2022-11-16 01:30:30 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
2022-12-15 07:50:54 +00:00
|
|
|
{% block title %}Post by {{ post.author.html_name_or_handle }}{% endblock %}
|
2022-11-16 01:30:30 +00:00
|
|
|
|
2022-12-26 17:39:33 +00:00
|
|
|
{% block opengraph %}
|
|
|
|
{% include "_opengraph.html" with opengraph_local=post.to_opengraph_dict %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2022-11-16 01:30:30 +00:00
|
|
|
{% block content %}
|
2023-05-04 04:42:37 +00:00
|
|
|
<section class="invisible">
|
|
|
|
{% for ancestor in ancestors reversed %}
|
|
|
|
{% include "activities/_post.html" with post=ancestor reply=True link_original=False %}
|
|
|
|
{% endfor %}
|
|
|
|
{% include "activities/_post.html" %}
|
|
|
|
{% for descendant in descendants %}
|
|
|
|
{% include "activities/_post.html" with post=descendant reply=True link_original=False %}
|
|
|
|
{% endfor %}
|
|
|
|
</section>
|
2022-11-16 01:30:30 +00:00
|
|
|
{% endblock %}
|