forked from LivePersonInc/developer-center
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeed.xml
25 lines (25 loc) · 1.07 KB
/
feed.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
---
search: exclude
layout: none
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>{{ site.site_title | xml_escape }}</title>
<link>{{ site.url }}</link>
<atom:link href="{{ "/feed.xml" | prepend: site.url }}" rel="self" type="application/rss+xml" />
<description>{{ site.description | xml_escape }}</description>
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
<generator>Jekyll v{{ jekyll.version }}</generator>
{% assign pages = site.pages | sort: "pagename" | sort: "date_updated" | reverse %}
{%- for page in pages limit:100 -%}
<item>
<title>{{ page.pagename | xml_escape }}</title>
<link>{{ page.url | prepend: site.url }}</link>
<guid isPermaLink="true">{{ page.url | prepend: site.url }}</guid>
<description xml:base="{{ site.url }}/"><![CDATA[{{ page.content | markdownify }}]]></description>
<!-- <pubDate>{{ page.date_updated | default: "2017/05/17" | date_to_rfc822 }}</pubDate> -->
</item>
{% endfor %}
</channel>
</rss>