-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfeed.xml
More file actions
28 lines (27 loc) · 1.01 KB
/
feed.xml
File metadata and controls
28 lines (27 loc) · 1.01 KB
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
---
layout: null
---
<feed xmlns="http://www.w3.org/2005/Atom">
<id>http://rystsov.info/</id>
<title>Rystsov's programming blog</title>
<link href="http://rystsov.info/feed.xml" rel="self" type="application/atom+xml"/>
<link href="http://rystsov.info/" rel="alternate" type="text/html"/>
<updated>2016-04-16T18:30:00Z</updated>
<author>
<name>Denis Rystsov</name>
<uri>https://twitter.com/rystsov</uri>
<email>rystsov.denis@gmail.com</email>
</author>
{% for post in site.posts %}
{% unless post.ignore_rss or post.private %}
<entry>
<id>{{ site.url }}{{ post.url }}</id>
<title>{{ post.title | xml_escape }}</title>
<summary>{{ post.desc | xml_escape }}</summary>
<link href="{{ site.url }}{{ post.url }}" rel="alternate" type="text/html" title="{{ post.title | xml_escape }}"/>
<published>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</published>
<updated>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</updated>
</entry>
{% endunless %}
{% endfor %}
</feed>