forked from rweekly/rweekly.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
podcast.xml
64 lines (57 loc) · 3.01 KB
/
podcast.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
layout: null
---
<?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>R Weekly</title>
<link>https://rweekly.org</link>
<atom:link href="https://rweekly.org/podcast.xml" rel="self" type="application/rss+xml"/>
<language>en-us</language>
<pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
<copyright>All rights reserved</copyright>
<webMaster>[email protected] (R Weekly)</webMaster>
<itunes:subtitle>R Weekly</itunes:subtitle>
<itunes:author>R Weekly</itunes:author>
<itunes:summary>Data & Fun. Weekly updates from the R programming language open source community. #rstats</itunes:summary>
<description>Data & Fun. Weekly updates from the R programming language open source community. #rstats</description>
<itunes:owner>
<itunes:name>R Weekly</itunes:name>
<itunes:email>[email protected] (R Weekly)</itunes:email>
</itunes:owner>
<itunes:image href="https://rweekly.org/public/rweekly_logo_3000x3000.png"/>
<itunes:category text="Technology">
<itunes:category text="Software How-To"/>
<itunes:category text="Tech News"/>
<itunes:category text="Podcasting"/>
</itunes:category>
<itunes:category text="Business"/>
<itunes:category text="Education"/>
<itunes:category text="Science & Medicine">
<itunes:category text="Natural Sciences"/>
<itunes:category text="Social Sciences"/>
<itunes:category text="Medicine"/>
</itunes:category>
<itunes:keywords>r, data, big data, data mining, data analysis, rstats, R programming language, open source, software, development, code, programming, hacker, software engineering, business intelligence, AI, data visualization, statistics, data science, machine learning</itunes:keywords>
<itunes:explicit>no</itunes:explicit>
{% assign podcasts = site.posts | where:"is_podcast", true %}
{% for post in podcasts %}
<item>
<title>{{ post.podcast_title }}</title>
<link>{{ post.podcast_permalink }}</link>
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
<description>{{ post.podcast_description }}</description>
<guid isPermaLink="false">{{ post.podcast_permalink }}</guid>
<enclosure url="{{ post.podcast_permalink }}" length="{{ post.podcast_size }}" type="audio/mpeg"/>
<itunes:author>R Weekly</itunes:author>
<itunes:duration>{{ post.podcast_duration }}</itunes:duration>
<itunes:summary>{{ post.podcast_summary }}</itunes:summary>
<itunes:keywords>r, data, big data, data mining, data analysis, rstats, R programming language, open source, software, development, statistics, data science, visualization, machine learning {{ post.podcast_keywords }} </itunes:keywords>
<itunes:subtitle>{{ post.podcast_subtitle }}</itunes:subtitle>
<itunes:image href="https://rweekly.org/public/rweekly_logo_3000x3000.png" />
<itunes:explicit>no</itunes:explicit>
</item>
{% endfor %}
</channel>
</rss>