{% from 'common/macros.html' import rss_html_content %} {%- extends 'base.atom' -%} {%- block title -%}latest threads in {{topic.name | escape}}{%- endblock -%} {%- block canonical_link -%}{{ url_for('topics.topic_by_id', topic_id=topic.id, _external=true) }}{%- endblock -%} {%- block content -%} {{ topic.description | escape }} {%- for thread in threads_list -%} {{ thread.title | escape }} {{ url_for('threads.thread_by_id', thread_id=thread.id, _external=true) }} {{ rss_html_content(thread.original_post_content) }} {{ thread.created_at | iso8601 }} {{ thread.started_by_display_name | escape }} @{{ thread.started_by }} {{ url_for('users.user_page', username=thread.started_by, _external=true) }} {%- endfor -%} {%- endblock -%}