2022-11-15 17:30:30 -08:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
2022-12-14 23:50:54 -08:00
|
|
|
{% block title %}Post by {{ post.author.html_name_or_handle }}{% endblock %}
|
2022-11-15 17:30:30 -08:00
|
|
|
|
2022-12-26 09:39:33 -08:00
|
|
|
{% block opengraph %}
|
|
|
|
{% include "_opengraph.html" with opengraph_local=post.to_opengraph_dict %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2022-11-15 17:30:30 -08:00
|
|
|
{% block content %}
|
2023-05-03 21:42:37 -07: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-15 17:30:30 -08:00
|
|
|
{% endblock %}
|