about summary refs log tree commit diff
path: root/support/atom.xml
blob: a2a18731ce9c337455d8950c06c11b79412998bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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>