File tree 2 files changed +25
-1
lines changed
2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ layout: nil
13
13
<name >Thomas Davis</name >
14
14
15
15
</author >
16
-
17
16
{% for post in site.posts limit:10 %}
18
17
<entry >
19
18
<title >{{ post.title }}</title >
Original file line number Diff line number Diff line change
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
+
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 >
You can’t perform that action at this time.
0 commit comments