This repository has been archived by the owner on Dec 28, 2017. It is now read-only.
forked from sharu725/vyaasa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeed.xml
49 lines (49 loc) · 2.25 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
47
48
49
---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>{{ site.title }}</title>
<link>{{ site.url }}</link>
<language>{{ site.lang }}</language>
<itunes:author>{{ site.author }}</itunes:author>
<description>{{ site.description }}</description>
<itunes:owner>
<itunes:name>{{ site.email }} ({{ site.title }})</itunes:name>
<itunes:email>{{ site.email }}</itunes:email>
</itunes:owner>
<itunes:image href="{{ site.image-url }}"/>
<itunes:category text="Education"/>
<itunes:category text="Science & Medicine"/>
<itunes:category text="Technology"/>
<itunes:explicit>no</itunes:explicit>
<image>
<title>{{ site.title }}</title>
<link>{{ site.url }}</link>
<url>{{ site.image-url }}</url>
</image>
<atom:link href="{{ site.url }}/feed.xml" rel="self" type="application/rss+xml" />
<copyright>Frase com direitos reservados do site</copyright>
<itunes:keywords>Ciência de Dados, Data Science, Pizza de Dados, dados, data, Data Science Pizza, Python, DS, Machine Learning</itunes:keywords>
<webMaster>[email protected] (Pizza de Dados)</webMaster>
{% for post in site.posts %}
<item>
<author>{{ site.email }} ({{ site.title }})</author>
<title>{{ post.title | xml_escape }}</title>
<description>{{ post.description }}</description>
<guid>{{ post.url | prepend: site.baseurl | prepend: site.url }}</guid>
<link>{{ post.url | prepend: site.baseurl | prepend: site.url }}</link>
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
<itunes:duration>{{ post.duration }}</itunes:duration>
<itunes:keywords>{{ post.keywords }}</itunes:keywords>
<itunes:author>{{ site.author }}</itunes:author>
<itunes:explicit>NO</itunes:explicit>
<itunes:block>no</itunes:block>
<enclosure url="{{ post.mp3 }}"/>
</item>
{% endfor %}
</channel>
</rss>