takahe/templates/activities/post.html

14 lines
453 B
HTML
Raw Normal View History

{% extends "base.html" %}
2022-12-14 23:50:54 -08:00
{% block title %}Post by {{ post.author.html_name_or_handle }}{% endblock %}
{% block content %}
2022-11-28 21:34:03 -08:00
{% if parent %}
{% include "activities/_post.html" with post=parent reply=True link_original=False %}
{% endif %}
2022-11-17 17:52:00 -08:00
{% include "activities/_post.html" %}
{% for reply in replies %}
2022-11-27 13:34:26 -08:00
{% include "activities/_post.html" with post=reply reply=True link_original=False %}
{% endfor %}
{% endblock %}