OLD | NEW |
1 --- | 1 --- |
2 layout: default | 2 layout: default |
3 title: "Dartisans: The Dart show" | 3 title: "Dartisans: The Dart show" |
4 description: "The Dartisans show features special guests from the Dart team and
community. Watch videos or subscribe to the podcast." | 4 description: "The Dartisans show features special guests from the Dart team and
community. Watch videos or subscribe to the podcast." |
5 --- | 5 --- |
6 | 6 |
7 {% injectdata episodes dartisans/episodes.yaml %} | 7 {% injectdata episodes dartisans/episodes.yaml %} |
8 | 8 |
9 # Dartisans — The Dart show and podcast | 9 # Dartisans: The Dart show and podcast |
10 | 10 |
11 This page archives recordings of Dartisans, the video show | 11 This page archives recordings of Dartisans, the video show |
12 and podcast about Dart. Dartisans is a semi-regular | 12 and podcast about Dart. Dartisans is a semi-regular |
13 broadcast featuring special guests from the Dart team and the community. | 13 broadcast featuring special guests from the Dart team and the community. |
14 | 14 |
15 You can also subscribe to an audio podcast of Dartisans, | 15 You can also subscribe to an audio podcast of Dartisans, |
16 either with a | 16 either with a |
17 <a href="/dartisans/podcast-feed" | 17 <a href="/dartisans/podcast-feed" |
18 title="Subscribe to Dartisans podcast feed"> <i class="icon-rss"> </i> direct
link</a> | 18 title="Subscribe to Dartisans podcast feed"> <i class="icon-rss"> </i> direct
link</a> |
19 or with | 19 or with |
20 <a href="http://itunes.apple.com/us/podcast/dartisans-dart-programming/id5468747
73?mt=2" | 20 <a href="http://itunes.apple.com/us/podcast/dartisans-dart-programming/id5468747
73?mt=2" |
21 title="Subscribe to Dartisans podcast with iTunes"> <i class="icon-rss"> </i>
iTunes</a>. | 21 title="Subscribe to Dartisans podcast with iTunes"> <i class="icon-rss"> </i>
iTunes</a>. |
22 | 22 |
23 {% for episode in page.episodes.episodes %} | 23 {% for episode in page.episodes.episodes %} |
24 | 24 |
25 {% capture link %}dartisans-ep-{{episode.num}}.html{% endcapture %} | 25 {% capture link %}dartisans-ep-{{episode.num}}.html{% endcapture %} |
26 | 26 |
27 <div class="row" style="margin-bottom:1em"> | 27 <div class="row" style="margin-bottom:1em"> |
28 <div class="span2"> | 28 <div class="span2"> |
29 <a href="{{ link }}"><img style="margin-top:9px; box-shadow: 5px 5px 10px #C
CC" src="dartisans-{{episode.num | format_num: "%02d" }}-thumb.jpeg"></a> | 29 <a href="{{ link }}"><img style="margin-top:9px; box-shadow: 5px 5px 10px #C
CC" src="{{episode.thumbnail}}"></a> |
30 </div> | 30 </div> |
31 <div class="span10"> | 31 <div class="span10"> |
32 <h3><a href="{{ link }}">Ep. {{ episode.num}}: {{ episode.subtitle }}</a></h
3> | 32 <h3><a href="{{ link }}">Ep. {{ episode.num }}: {{ episode.subtitle }}</a></
h3> |
33 | 33 |
34 <p>{{ episode.description }}</p> | 34 <p>{{ episode.description }}</p> |
35 | 35 |
36 <p>Aired {{episode.pubdate}}.</p> | 36 <p>{{episode.pubdate}}</p> |
37 </div> | 37 </div> |
38 </div> | 38 </div> |
39 | 39 |
40 {% endfor %} | 40 {% endfor %} |
OLD | NEW |