-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrss.xml
23 lines (23 loc) · 791 Bytes
/
rss.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
layout: none
---
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>{{site.name}}</title>
<link>{{site.url}}</link>
<description>Maxerios Blog</description>
<language>en-EN</language>
<copyright>Max Assmy</copyright>
{% for post in site.posts limit:10 %}
<item>
<title>{{post.title}}</title>
<description>{{post.content | xml_escape}}</description>
<link>{{ site.url }}{{ post.url }}</link>
<author>-</author>
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
<pubDate>{{post.date | date: "%a, %d %b %Y %H:%M:%S %z"}}</pubDate>
</item>
{% endfor %}
</channel>
</rss>