This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/templates/activities/post.html

14 lines
448 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}Post by {{ post.author.name_or_handle }}{% endblock %}
{% block content %}
2022-11-29 06:34:03 +01:00
{% if parent %}
{% include "activities/_post.html" with post=parent reply=True link_original=False %}
{% endif %}
2022-11-18 02:52:00 +01:00
{% include "activities/_post.html" %}
{% for reply in replies %}
2022-11-27 22:34:26 +01:00
{% include "activities/_post.html" with post=reply reply=True link_original=False %}
{% endfor %}
{% endblock %}