-
Notifications
You must be signed in to change notification settings - Fork 2
/
atom.xml.tpl
58 lines (50 loc) · 1.97 KB
/
atom.xml.tpl
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
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">
<channel>
<title>{{ titulo }}</title>
<link>{{ link }}</link>
<description>{{ descripcion }}</description>
<language>{{ lenguaje }}</language>
<ttl>{{ ttl_minutos }}</ttl>
<lastBuildDate>{{ ultima_compilacion }}</lastBuildDate>
<author>{{autor}}</author>
<itunes:author>{{ autor }}</itunes:author>
<image>
<title>{{ imagen_titulo }}</title>
<url>{{ imagen_url }}</url>
<link>{{ imagen_link }}</link>
</image>
<itunes:owner>
<itunes:name>{{ autor }}</itunes:name>
<itunes:email>{{ editor_email }}</itunes:email>
</itunes:owner>
{% if webmaster_email %}
<webMaster>{{ webmaster_email }}</webMaster>
{% endif %}
{% if editor_email %}
<managingEditor>{{ editor_email }}</managingEditor>
{% endif %}
{% for item in episodios %}
<item>
<title>{{ item.titulo }}</title>
<guid>{{ item.guid }}</guid>
<link>{{ item.link }}</link>
<pubDate>{{ item.fecha_publicacion }}</pubDate>
<author>{{autor}}</author>
<description><![CDATA[{{ item.descripcion }}
{% if item.ideas %}
<br />Ideas: <ul>{% for idea in item.ideas %}
<li>{{ idea }}</li>{% endfor %}
</ul>{% endif %}]]>
</description>
{# aqui va la URL al audio, lo importante #}
<enclosure url="{{ item.url_audio }}" length="{{ item.audio_size_bytes }}" type="audio/mpeg"/>
<image>
<title>{{ item.titulo }}</title>
<url>{{ item.url_imagen }}</url>
<link>{{ item.url_imagen }}</link>
</image>
</item>
{% endfor %}
</channel>
</rss>