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