-
Notifications
You must be signed in to change notification settings - Fork 0
/
podcast.html
28 lines (27 loc) · 1.32 KB
/
podcast.html
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
---
layout: default
title: Podcast
area: podcast
---
<header class="page-header">
<div class="container">
<h1 class="page-title">Podcast</h1>
<p>For 3 years I was a co-host of <a href="http://www.freshtilledsoil.com/category/podcast/">The Dirt</a>, a UX podcast. In that time <a href="http://csskarma.com/">Tim Wright</a>, <a href="http://www.markgrambau.com/">Mark Grambau</a> and I recorded 166 episodes, spoke with dozens of industry leaders and a few of my personal heroes, and <del>wasted</del> wisely used a lot of company time. Here are a few of my favorite episodes.</p>
</div><!-- end of .container -->
</header><!-- end of .page-header -->
<div class="page-content">
<div class="container">
{% assign podcasts = site.podcast | sort: 'date' | reverse %}
<ul class="descriptions">
{% for podcast in podcasts %}
<li>
<h2 class="title"><a href="{{ podcast.external-url }}">{{ podcast.title }}</a></h2>
<audio controls src="{{ podcast.audio-src }}">
<a href="{{ podcast.audio-src }}">Download episode audio</a>
</audio>
<p>{{ podcast.date | date: "%B %d, %Y" }}</p>
</li>
{% endfor %}
</ul>
</div><!-- end of .container -->
</div><!-- end of .page-content -->