about summary refs log tree commit diff
path: root/support/atom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'support/atom.xml')
-rw-r--r--support/atom.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/support/atom.xml b/support/atom.xml
new file mode 100644
index 0000000..a2a1873
--- /dev/null
+++ b/support/atom.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="utf-8"?>
+<feed xmlns="http://www.w3.org/2005/Atom">
+
+	<title>{feed_title}</title>
+	<subtitle>{feed_subtitle}</subtitle>
+	<updated>{feed_updated}</updated>
+
+	<link rel="self" href="{feed_link}" type="application/atom+xml" />
+	<id>{feed_id}</id>
+
+	<author>
+			<name>{feed_author_name}</name>
+			<email>{feed_author_email}</email>
+	</author>
+
+	{%pattern entry}
+	<entry>
+		<title>{entry_title}</title>
+		<link href="{entry_link}" rel="alternate" type="text/html" />
+		<id>{entry_id}</id>
+
+		<published>{entry_published}</published>
+		<updated>{entry_updated}</updated>
+
+		<content type="html">
+{entry_content}
+		</content>
+	</entry>
+	{%end}
+</feed>
\ No newline at end of file