File tree 4 files changed +27
-1
lines changed
4 files changed +27
-1
lines changed Original file line number Diff line number Diff line change
1
+ < ?xml version="1.0" encoding="utf-8"?>
2
+ < feed xmlns ="http://www.w3.org/2005/Atom ">
3
+ < title type ="text " xml:lang ="en "> {{ site.title }}</ title >
4
+ < link type ="application/atom+xml " href ="{{ site.url }}/feed " rel ="self " />
5
+ < link type ="text " href ="{{ site.url }} " rel ="alternate " />
6
+
7
+ < updated > {{ site.time | date_to_xmlschema }}</ updated >
8
+ < id > {{ site.url }}</ id >
9
+ < author > < name > Michael Bodnarchuk "Davert"</ name > </ author >
10
+ < rights > Copyright (c) Codeception</ rights >
11
+
12
+ {% for post in site.posts limit:30 %}
13
+ < entry >
14
+ < title > {{ post.title }}</ title >
15
+ < link href ="{{ site.url }}{{ post.url }}/ "/>
16
+ < updated > {{ post.date | date_to_xmlschema }}</ updated >
17
+ < id > {{ site.url }}{{ post.url }}/</ id >
18
+ < summary type ="html "> {{ post.content | strip_html | truncatewords: 20 }}</ summary >
19
+ </ entry >
20
+ {% endfor %}
21
+ </ feed >
Original file line number Diff line number Diff line change 11
11
< script src ="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js " type ="text/javascript "> </ script >
12
12
< script src ="/js/jquery.tableofcontents.min.js " type ="text/javascript " charset ="utf-8 "> </ script >
13
13
14
+ < link title ="Codeception Blog " type ="application/rss+xml " rel ="alternate " href ="/feed "/>
15
+
14
16
</ head >
15
17
< body >
16
18
< a href ="http://github.com/codeception/codeception "> < img style ="position: absolute; top: 0; left: 0; border: 0; " src ="https://a248.e.akamai.net/assets.github.com/img/ce742187c818c67d98af16f96ed21c00160c234a/687474703a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f6c6566745f677261795f3664366436642e706e67 " alt ="Fork me on GitHub "> </ a >
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ title: Codeception Blog
7
7
8
8
{% for post in site.posts %}
9
9
10
- ## [ {{ post.title }}] ({{ post.url }})
10
+ ### [ {{ post.title }}] ({{ post.url }})
11
11
12
12
#### {{ post.date | date: "%B %d, %Y" }}
13
13
Original file line number Diff line number Diff line change
1
+ ---
2
+ ---
3
+ {% include rss.html %}
You can’t perform that action at this time.
0 commit comments