-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpodcast.html
More file actions
36 lines (25 loc) · 971 Bytes
/
podcast.html
File metadata and controls
36 lines (25 loc) · 971 Bytes
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
---
layout: interior
permalink: /podcast/
---
<article class="podcast">
<h1>Web Workers Podcast</h1>
<p>
A podcast covering all things interesting to those who work on the Web. Topics include modern CSS, JavaScript, new trends in HTML, User Experience and Design. <a href="/podcast/feed.xml">Add our feed to your podcatcher of choice »</a>
</p>
{% for podcast in site.data.podcast reversed %}
<section class="episode">
<h3>{{ podcast.title }}</h3>
<p>
{{ podcast.description|safe }}
</p>
<audio controls="controls" buffered preload="auto">
Your browser does not support the <code>audio</code> element.
<source src="{{ podcast.link }}" type="audio/mp4">
</audio>
</section>
{% endfor %}
</article>
<small>
Royalty Free Creative Commons Music: <a href="http://www.bensound.com">www.bensound.com</a>
</small>