Skip to content

Commit 8aedd8b

Browse files
committed
hungry
1 parent 6f8dfe4 commit 8aedd8b

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

atom.xml

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ layout: nil
1313
<name>Thomas Davis</name>
1414
<email>[email protected]</email>
1515
</author>
16-
1716
{% for post in site.posts limit:10 %}
1817
<entry>
1918
<title>{{ post.title }}</title>

rss.xml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
layout: nil
3+
---
4+
<?xml version="1.0" encoding="utf-8"?>
5+
<!-- Thanks to cactus! - https://github.com/cactus -->
6+
<feed xmlns="http://www.w3.org/2005/Atom">
7+
<title>Backbone Tutorials</title>
8+
<link href="http://backbonetutorials.com/atom.xml" rel="self"/>
9+
<link href="http://backbonetutorials.com/"/>
10+
<updated>{{ site.time | date_to_xmlschema }}</updated>
11+
<id>http://backbonetutorials.com/</id>
12+
<author>
13+
<name>Thomas Davis</name>
14+
<email>[email protected]</email>
15+
</author>
16+
{% for post in site.posts limit:10 %}
17+
<entry>
18+
<title>{{ post.title }}</title>
19+
<link href="http://backbonetutorials.com{{ post.url }}"/>
20+
<updated>{{ post.date | date_to_xmlschema }}</updated>
21+
<id>http://backbonetutorials.com{{ post.id }}</id>
22+
<content type="html">{{ post.content | xml_escape }}</content>
23+
</entry>
24+
{% endfor %}
25+
</feed>

0 commit comments

Comments
 (0)