takahe/templates/activities/post.html

11 lines
298 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}Post by {{ post.author.name_or_handle }}{% endblock %}
{% block content %}
2022-11-18 01:52:00 +00:00
{% include "activities/_post.html" %}
{% for reply in replies %}
{% include "activities/_post.html" with post=reply reply=True %}
{% endfor %}
{% endblock %}