forked from daattali/beautiful-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeed.xml
28 lines (28 loc) · 1.39 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
26
27
28
---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
{% if site.title %}
<title>{{ site.title | xml_escape }}</title>
{% endif %}
{% if site.rss-description %}
<description>{{ site.rss-description | xml_escape }}</description>
{% endif %}
<link>{{ '/' | absolute_url }}</link>
<atom:link href="{{ 'feed.xml' | absolute_url }}" rel="self" type="application/rss+xml" />
{% assign excerpt_length = site.excerpt_length | default: 50 %}
{% for post in site.posts limit:20 %}
<item>
{% if post.link %}<title>★ {{ post.title | xml_escape }}</title>{% else %}<title>{{ post.title | xml_escape }}</title>{% endif %}
{% if post.link %}<link href="{{ post.link }}" rel="alternate" type="text/html" title="{{ post.title | xml_escape}}"/>{% else %}<link href="{{ site.url }}{{ post.url }}" rel="alternate" type="text/html" title="{{ post.title | xml_escape }}"/>{% endif %}
<content type="html" xml:base="{{ post.link }}">{{ post.content | xml_escape }}</content>
<summary type="html">{{ post.excerpt | xml_escape }}</summary>
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
<guid isPermaLink="true">{{ post.url | absolute_url }}</guid>
<author><name>Jacob Brooks</name></author>
</item>
{% endfor %}
</channel>
</rss>