File tree 2 files changed +24
-3
lines changed
2 files changed +24
-3
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,6 @@ markdown: redcarpet
8
8
pygments : true
9
9
10
10
# Options for jekyll-rss plugin
11
- rss_path : " /"
12
- rss_name : " rss.xml"
13
- rss_post_limit : 10
11
+ # rss_path: "/"
12
+ # rss_name: "rss.xml"
13
+ # rss_post_limit: 10
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout: none
3
+ ---
4
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
5
+ <rss version =" 2.0" xmlns : atom =" http://www.w3.org/2005/Atom" >
6
+ <channel >
7
+ <title >{{ site.name | xml_escape }}</title >
8
+ <description >{% if site.description %}{{ site.description | xml_escape }}{% endif %}</description >
9
+ <link >{{ site.url }}</link >
10
+ <atom : link href =" {{ site.url }}/feed.xml" rel =" self" type =" application/rss+xml" />
11
+ {% for post in site.posts limit:10 %}
12
+ <item >
13
+ <title >{{ post.title | xml_escape }}</title >
14
+ <description >{{ post.content | xml_escape }}</description >
15
+ <pubDate >{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate >
16
+ <link >{{ site.url }}{{ post.url }}</link >
17
+ <guid isPermaLink =" true" >{{ site.url }}{{ post.url }}</guid >
18
+ </item >
19
+ {% endfor %}
20
+ </channel >
21
+ </rss >
You can’t perform that action at this time.
0 commit comments