aboutsummaryrefslogtreecommitdiff
path: root/atom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'atom.xml')
-rw-r--r--atom.xml16
1 files changed, 8 insertions, 8 deletions
diff --git a/atom.xml b/atom.xml
index 3521e33..bea3d0f 100644
--- a/atom.xml
+++ b/atom.xml
@@ -14,14 +14,14 @@
<link>https://{{ site.domain }}/atom.xml</link>
<atom:link href="https://{{ site.domain }}/atom.xml" rel="self" type="application/rss+xml" />
</channel>
- {% for post in site.posts %}
- <item>
- <title>{{ post.title }}</title>
- <guid>{{ post.id }}</guid>
- <link>{{ post.url }}</link>
- <pubDate>{{ post.date | date_to_xmlschema }}</pubDate>
- <description>{{ post.content | markdownify | xml_escape }}</description>
- </item>
+ {% for post in site.items %}
+ <item>
+ <title>{{ post.title | smartify | xml_escape }}</title>
+ <guid>{{ post.id }}</guid>
+ <link>{{ post.url }}</link>
+ <pubDate>{{ post.date | date_to_xmlschema }}</pubDate>
+ <description>{{ post.content | markdownify | xml_escape }}</description>
+ </item>
{% endfor %}
</rss>