-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrss.xml
29 lines (29 loc) · 1.29 KB
/
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
24
25
26
27
28
29
---
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>{{ site.title | xml_escape }}</title>
<description>{{ site.description | xml_escape }}</description>
<link>{{ site.url | absolute_url }}</link>
<atom:link href="{{ "/rss.xml" | absolute_url }}" rel="self" type="application/rss+xml" />
<language>ko-KR</language>
<copyright>Copyright 인하대학교 인트아이, All rights reserved.</copyright>
<pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
<generator>Jekyll</generator>
{% for post in site.posts limit:30 %}
<item>
<title>{{ post.title | xml_escape }}</title>
<link>{{ post.url | absolute_url }}</link>
<description>{{ post.content | strip_html | truncatewords: 200 | xml_escape }}</description>
<author>{{ site.data.authors[post.author].email | xml_escape }} ({{ site.data.authors[post.author].name | xml_escape }})</author>
{% for category in post.categories %}
<category>{{ category | xml_escape }}</category>
{% endfor %}
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
<guid>{{ post.url | absolute_url }}</guid>
</item>
{% endfor %}
</channel>
</rss>