-
Notifications
You must be signed in to change notification settings - Fork 90
/
feed.xml
42 lines (34 loc) · 1.84 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
---
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<generator uri="https://jekyllrb.com/" version="{{ jekyll.version }}">Jekyll</generator>
<link href="{{ page.url | absolute_url }}" rel="self" type="application/atom+xml" />
<link href="{{ '/' | absolute_url }}" rel="alternate" type="text/html" />
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>{{ page.url | absolute_url | xml_escape }}</id>
<title>Trino RSS Feed</title>
<description>This feed combines blog posts and Trino Community Broadcast episodes in one chronological feed.</description>
<subtitle>{{ site.description | xml_escape }}</subtitle>
{%- assign entries = site.posts | concat: site.episodes | sort: 'date' | reverse -%}
{% for entry in entries %}
<entry>
<title>{{ entry.title | strip_html | normalize_whitespace | xml_escape }}</title>
<link href="{{ entry.url | absolute_url }}" rel="alternate" type="text/html" title="{{ entry.title | xml_escape }}" />
<published>{{ entry.date | date_to_xmlschema }}</published>
<updated>{{ entry.last_modified_at | default: entry.date | date_to_xmlschema }}</updated>
<id>{{ entry.id | absolute_url | xml_escape }}</id>
<content type="html" xml:base="{{ entry.url | absolute_url | xml_escape }}">{{ entry.content | strip | xml_escape }}</content>
{% if entry.author %}
<author>
<name>{{ entry.author | xml_escape }}</name>
</author>
{% endif %}
<summary>{{ entry.excerpt | strip_html | normalize_whitespace | xml_escape }}</summary>
{% assign entry_image = entry.image.path | default: entry.image | absolute_url %}
{% if entry_image %}
<media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="{{ entry_image | xml_escape }}" />
{% endif %}
</entry>
{% endfor %}
</feed>