20 lines
728 B
Plaintext
20 lines
728 B
Plaintext
{% 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) %}
|
|
<entry>
|
|
<title>Re: {{ thread.title }}</title>
|
|
<link href="{{ post_url }}"/>
|
|
<id>{{ post_url }}</id>
|
|
<updated>{{ post.edited_at | iso8601 }}</updated>
|
|
{{rss_html_content(post.content_rss)}}
|
|
<author>
|
|
<name>{{ post.display_name }} @{{ post.username }}</name>
|
|
</author>
|
|
</entry>
|
|
{% endfor %}
|
|
{% endblock %}
|