-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathatom.xml
24 lines (24 loc) · 808 Bytes
/
atom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{{name}}</title>
<link href="{{base_url}}/atom.xml" rel="self" type="application/atom+xml"></link>
<link rel="hub" href="{{websub_endpoint}}"></link>
<link href="{{base_url}}/" rel="alternate"></link>
<id>{{base_url}}/</id>
<updated>{{updated}}</updated>
{{#entries}}
<entry>
<title>{{name}}</title>
<link href="{{url}}" rel="alternate"></link>
<updated>{{published}}</updated>
<author>
<name>{{author_name}}</name>
</author>
<id>{{url}}</id>
<summary type="html"><![CDATA[{{{content}}}]]></summary>
{{#category }}
<category term="{{ . }}" />
{{/category}}
</entry>
{{/entries}}
</feed>