This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
feed
61 lines (57 loc) · 2.67 KB
/
feed
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">
<channel>
<title>{{ site.title }}</title>
<atom:link href="{{ site.url }}/feed/" rel="self" type="application/rss+xml" />
<link>{{ site.url }}</link>
<description>{{ site.description }}</description>
<language>es-es</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<itunes:author>{{ site.name }}</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:image href="{{ site.url }}{{ site.avatar }}" />
<itunes:owner>
<itunes:name>{{ site.name }}</itunes:name>
<itunes:email>{{ site.email }}</itunes:email>
</itunes:owner>
<itunes:subtitle><![CDATA[{{ site.feed.subtitle | truncate: 255 | strip_html | cdata_escape }}]]></itunes:subtitle>
<itunes:summary><![CDATA[{{ site.feed.summary | truncate: 4000 | strip_html | cdata_escape }}]]></itunes:summary>
<image>
<title>{{ site.title }}</title>
<url>{{ site.url }}{{ site.avatar }}</url>
<link>{{ site.url }}</link>
</image>
<itunes:category text="{{ site.feed.category }}" />
{% for ep in site.categories.Podcast %}
<item>
<title>{{ ep.title }}</title>
<link>{{ site.url }}{{ ep.url }}</link>
<pubDate>{{ ep.date | date_to_rfc822 }}</pubDate>
{% for category in ep.tags %}
<category>category</category>
{% endfor %}
<guid isPermaLink="{% if ep.podcast.guid %}false{% else %}true{% endif %}">{{ site.url }}{% if ep.podcast.guid %}{{ ep.podcast.guid }}{% else %}{{ ep.url }}{% endif %}</guid>
<description>{{ ep.excerpt | strip_html }}</description>
<content:encoded>
<![CDATA[{{ ep.content | cdata_escape }}]]>
</content:encoded>
<enclosure url="{{ ep.podcast.audio }}.ogg" length="0" type="audio/ogg" />
<enclosure url="{{ ep.podcast.audio }}.mp3" length="0" type="audio/mpeg" />
<itunes:subtitle><![CDATA[{{ ep.excerpt | truncate: 255 | strip_html | cdata_escape }}]]></itunes:subtitle>
<itunes:summary><![CDATA[{{ ep.content | truncate: 4000 | strip_html | cdata_escape }}]]></itunes:summary>
<itunes:author>{{ site.name }}</itunes:author>
<itunes:image href="{{ site.url }}{{ site.avatar }}" />
<itunes:explicit>no</itunes:explicit>
<itunes:keywords>{{ ep.tags | join: ", " }}</itunes:keywords>
</item>
{% endfor %}
</channel>
</rss>