-
Notifications
You must be signed in to change notification settings - Fork 0
/
feed.xml
46 lines (25 loc) · 1.56 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
layout: none
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" >
<generator uri="https://jekyllrb.com/" version="3.8.5">Jekyll</generator>
<link href="{{ site.url }}/feed.xml" rel="self" type="application/atom+xml" />
<link href="{{ site.url }}" rel="alternate" type="text/html" />
<updated>2020-03-25T12:02:57-08:00</updated>
<id>{{ site.url }}/feed.xml</id>
<title type="html">{{ site.title | xml_escape }}</title>
<subtitle>{{ site.description | xml_escape }}</subtitle>
{% for post in site.posts %}
<entry>
{% 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 }}"/>{% else %}<link href="{{ site.url }}{{ post.url }}" rel="alternate" type="text/html" title="{{ post.title }}"/>{% endif %}
<content type="html" xml:base="{{ post.link }}">{{ post.content | xml_escape }}</content>
<published>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</published>
<updated>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</updated>
{% if post.link %}<id>{{ post.link }}</id>{% else %}<id>{{ site.url }}{{ post.url }}</id>{% endif %}
<author><name>{{ post.author }}</name></author>
<summary type="html">{{ post.description }}</summary>
</entry>
{% endfor %}
</feed>