-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpodcast.example.xml
executable file
·48 lines (46 loc) · 2.12 KB
/
podcast.example.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
<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:itunesu="http://www.itunesu.com/feed" version="2.0">
<channel>
<link>https://www.YourSite.com</link>
<language>en-us</language>
<copyright>©2018</copyright>
<webMaster>[email protected] (Your Name)</webMaster>
<managingEditor>[email protected] (Your Name)</managingEditor>
<image>
<url>https://www.YourSite.com/ImageSize300X300.jpg</url>
<title>Title of your logo</title>
<link>https://www.YourSite.com</link>
</image>
<itunes:owner>
<itunes:name>Your Name</itunes:name>
<itunes:email>[email protected]</itunes:email>
</itunes:owner>
<itunes:category text="Education">
<itunes:category text="Higher Education" />
</itunes:category>
<itunes:keywords>separate, by, comma, and, space</itunes:keywords>
<itunes:explicit>no</itunes:explicit>
<itunes:image href="http://www.YourSite.com/ImageSize300X300.jpg" />
<atom:link href="https://www.YourSite.com/feed.xml" rel="self" type="application/rss+xml" />
<pubDate>Fri, 05 Oct 2018 09:00:00 GMT</pubDate>
<title>Verbose title of the podcast</title>
<itunes:author>College, school, or department owning the podcast</itunes:author>
<description>Verbose description of the podcast.</description>
<itunes:summary>Duplicate of above verbose description.</itunes:summary>
<itunes:subtitle>Short description of the podcast - 255 character max.</itunes:subtitle>
<lastBuildDate>Fri, 05 Oct 2018 09:00:00 GMT</lastBuildDate>
<!--REPEAT THIS BLOCK FOR EACH EPISODE-->
<item>
<title>Verbose title of the episode</title>
<description>Verbose description of the episode.</description>
<itunes:summary>Duplicate of above verbose description.</itunes:summary>
<itunes:subtitle>Short description of the episode - 255 character max.</itunes:subtitle>
<itunesu:category itunesu:code="112" />
<enclosure url="https://www.YourSite.com/FILE.EXT" type="audio/mpeg" length="1" />
<guid>https://www.YourSite.com/FILE.EXT</guid>
<itunes:duration>H:MM:SS</itunes:duration>
<pubDate>Fri, 05 Oct 2018 09:00:00 GMT</pubDate>
</item>
<!--END REPEAT-->
</channel>
</rss>