OLD | NEW |
1 --- | 1 --- |
2 layout: none | 2 layout: none |
3 --- | 3 --- |
4 <?xml version="1.0" encoding="utf-8"?> | 4 <?xml version="1.0" encoding="utf-8"?> |
5 <rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:itunes="htt
p://www.itunes.com/dtds/podcast-1.0.dtd"> | 5 <rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:itunes="htt
p://www.itunes.com/dtds/podcast-1.0.dtd"> |
6 <channel> | 6 <channel> |
7 <title>Dartisans: Dart Programming Language Podcast</title> | 7 <title>Dartisans: Dart Programming Language Podcast</title> |
8 <link>http://www.dartlang.org/dartisans/</link> | 8 <link>http://www.dartlang.org/dartisans/</link> |
9 <description>News, interviews, and Q&A with the Dart team and community.</
description> | 9 <description>News, interviews, and Q&A with the Dart team and community.</
description> |
10 <itunes:summary>News, interviews, and Q&A with the Dart team and community
.</itunes:summary> | 10 <itunes:summary>News, interviews, and Q&A with the Dart team and community
.</itunes:summary> |
11 <language>en</language> | 11 <language>en</language> |
12 <copyright>This work is licensed under a Creative Commons Attribution 3.0 Unpo
rted License.</copyright> | 12 <copyright>This work is licensed under a Creative Commons Attribution 3.0 Unpo
rted License.</copyright> |
13 <lastBuildDate>{{ "now" | date_to_rfc2822 }}</lastBuildDate> | 13 <lastBuildDate>{{ "now" | date_to_rfc2822 }}</lastBuildDate> |
14 <itunes:image href="http://www.dartlang.org/dartisans/dartisans-podcast.png" /
> | 14 <itunes:image href="http://www.dartlang.org/dartisans/dartisans-podcast.png" /
> |
15 <itunes:author>Dart Team</itunes:author> | 15 <itunes:author>Dart Team</itunes:author> |
16 <itunes:keywords>dart,web,programming,javascript,html5</itunes:keywords> | 16 <itunes:keywords>dart,web,programming,javascript,html5</itunes:keywords> |
17 <itunes:explicit>No</itunes:explicit> | 17 <itunes:explicit>No</itunes:explicit> |
18 <itunes:category text="Technology"> | 18 <itunes:category text="Technology"> |
19 <itunes:category text="Software How-To" /> | 19 <itunes:category text="Software How-To" /> |
20 </itunes:category> | 20 </itunes:category> |
21 {% injectdata episodes dartisans/episodes.yaml %} | 21 {% injectdata episodes dartisans/episodes.yaml %} |
22 {% for episode in page.episodes.episodes %} | 22 {% for episode in page.episodes.episodes %} |
| 23 {% if episode.file %} |
23 <item> | 24 <item> |
24 <title>{{ episode.title }}</title> | 25 <title>{{ episode.title }}</title> |
25 <description>{{ episode.description | strip_html }}</description> | 26 <description>{{ episode.description | strip_html }}</description> |
26 <pubDate>{{ episode.pubdate | date_to_rfc2822 }}</pubDate> | 27 <pubDate>{{ episode.pubdate | date_to_rfc2822 }}</pubDate> |
27 <guid>{{ page.episodes.url-prefix }}{{ episode.file }}</guid> | 28 <guid>{{ page.episodes.url-prefix }}{{ episode.file }}</guid> |
28 <enclosure url="{{ page.episodes.url-prefix }}{{ episode.file }}" length="{{
episode.length }}" type="audio/mpeg" /> | 29 <enclosure url="{{ page.episodes.url-prefix }}{{ episode.file }}" length="{{
episode.length }}" type="audio/mpeg" /> |
29 </item> | 30 </item> |
| 31 {% endif %} |
30 {% endfor %} | 32 {% endfor %} |
31 </channel> | 33 </channel> |
32 </rss> | 34 </rss> |
OLD | NEW |