{% extends 'base.html' %} {% from 'comment.html' import render_comment, reply, thread_author with context %} {% block content %} {{ thread_author(author_id, author, create_time, modify_time) }}

{{ minimd(text) | safe }}

{{ reply() }} {% for c in comments %} {{ render_comment(c, thread_id) }} {% endfor %} {% endblock %}