-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathfeed.xml
More file actions
31 lines (29 loc) · 899 Bytes
/
feed.xml
File metadata and controls
31 lines (29 loc) · 899 Bytes
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
31
---
extension: xml
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Growing Devs</title>
<link href="http://growingdevs.com/feed.xml" rel="self" />
<link href="http://growingdevs.com/" />
<id>http://growingdevs.com/</id>
<updated>{{ site.time | date_to_xmlschema}}</updated>
<author>
<name>Growing Devs</name>
<email>growingdevs@gmail.com</email>
</author>
{% for post in site.posts limit:10 %}
<entry>
<id>http://growingdevs.com{{post.id}}</id>
<title>{{post.title | xml_escape}}</title>
<link href="http://growingdevs.com{{post.url}}" />
<updated>{{post.published_at | date_to_xmlschema}}</updated>
<author>
<name>{{post.author | xml_escape}}</name>
</author>
<content type="html">
{{post.content | xml_escape}}
</content>
</entry>
{% endfor %}
</feed>