takahe/templates/activities/post.html
Andrew Godwin 8f57aa5f37
UI/Domains Refactor
Redoes the UI to remove timelines, promote domains, and a lot of other things to support the refactor.
2023-05-03 22:42:37 -06:00

20 lines
688 B
HTML

{% extends "base.html" %}
{% block title %}Post by {{ post.author.html_name_or_handle }}{% endblock %}
{% block opengraph %}
{% include "_opengraph.html" with opengraph_local=post.to_opengraph_dict %}
{% endblock %}
{% block content %}
<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>
{% endblock %}