{% extends 'base.atom' %}
{% from 'common/macros.html' import rss_html_content %}
{% block title %}latest threads in {{target_topic.name}}{% endblock %}
{% block canonical_link %}{{url_for('topics.topic', slug=target_topic.slug, _external=true)}}{% endblock %}
{% block content %}
{{ target_topic.description }}
{% for thread in threads_list %}
[new thread] {{ thread.title | escape }}
{{ url_for('threads.thread', slug=thread.slug, _external=true)}}
{{ thread.created_at | iso8601 }}
{{rss_html_content(thread.original_post_content)}}
{{thread.started_by_display_name}} @{{ thread.started_by }}
{% endfor %}
{% endblock %}