-
Notifications
You must be signed in to change notification settings - Fork 1
/
fullfeed.xml
32 lines (32 loc) · 1.26 KB
/
fullfeed.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
---
<?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 }}/</link>
<atom:link href="{{ "/feed.xml" | prepend: site.url }}" rel="self" type="application/rss+xml"/>
<pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
<generator>Jekyll v{{ jekyll.version }}</generator>
{% assign feed_items = site.feed_items | default: 20 %}
{% for post in site.posts limit:feed_items %}
<item>
<title>{{ post.title | xml_escape }}</title>
<description>{{ post.full_feed_description | xml_escape }}</description>
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
{% if post.link_url %}
<link>{{post.link_url}}</link>
{% else %}
<link>{{ post.url | prepend: site.url }}</link>
{% endif %}
<guid isPermaLink="true">{{ post.url | prepend: site.url }}</guid>
{% if post.rss_image %}
<image>{{ post.rss_image | prepend: site.url }}</image>
{% endif %}
</item>
{% endfor %}
</channel>
</rss>