{% from 'common/macros.html' import rss_html_content %}
{%- extends 'base.atom' -%}
{%- block title -%}replies to {{thread.title}}{%- endblock -%}
{%- block canonical_link -%}{{ url_for('threads.thread_by_id', thread_id=thread.id, _external=true) }}{%- endblock -%}
{%- block content -%}
{%- for post in posts -%}
{%- set post_url = get_post_url(post.id, _anchor=true, external=true) -%}
Re: {{ thread.title | escape }}
{{ post_url }}
{{ post.edited_at | iso8601 }}
{{ rss_html_content(post.content_rss) }}
{{ post.display_name | escape }} @{{ post.username }}
{{ url_for('users.user_page', username=post.username, _external=true) }}
{%- endfor -%}
{%- endblock -%}