-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnaverfeed.xml
32 lines (29 loc) · 1023 Bytes
/
naverfeed.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
30
31
32
---
layout: null
title : Atom Feed
---
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://webmastertool.naver.com">
<id>{{ site.url }}</id>
<title><![CDATA[ {{ site.title | xml_escape }} ]]></title>
<author>
<name>{{ site.author.name | xml_escape }}</name>
<email>{{ site.author.email }}</email>
</author>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<link rel="site" href="{{ site.url }}" />
{% for post in site.posts limit:20 %}
<entry>
<id>{{ site.production_url }}{{ post.id }}</id>
<title><![CDATA[ {{ post.title | xml_escape }} ]]></title>
<author>
<name>{{ site.author.name | xml_escape }}</name>
<email>{{ site.author.email }}</email>
</author>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<published>{{ post.date | date_to_xmlschema }}</published>
<link rel="via" href="{{ site.url }}{{ post.url }}" />
<content type="html"><![CDATA[ {{ post.content | xml_escape }} ]]></content>
</entry>
{% endfor %}
</feed>