mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-10 17:31:03 +00:00
8f57aa5f37
Redoes the UI to remove timelines, promote domains, and a lot of other things to support the refactor.
19 lines
688 B
HTML
19 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 %}
|