forked from maban/styleguides
-
Notifications
You must be signed in to change notification settings - Fork 0
/
podcasts.html
55 lines (40 loc) · 1.54 KB
/
podcasts.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
layout: page
title: Podcasts
section: podcasts
type: podcast
description: Episodes from various podcasts where style guides are discussed.
---
<section>
<h1 class="title">Style Guide Podcast</h1>
<p class="lede">A small batch series of interviews on Style Guides, hosted by <a href="http://twitter.com/anna_debenham">Anna Debenham</a> and <a href="http://twitter.com/brad_frost">Brad Frost</a>.</p>
{% include podcast-actions.html %}
{% assign podcast = site.podcast | sort: 'number' %}
<h2 class="title">Season 2</h2>
<ol class="resources episodes episodes--mini">
{% for podcast in podcast reversed %}
{% if podcast.season == 2 %}
{% include episode-mini.html %}
{% endif %}
{% endfor %}
</ol>
<h2 class="title">Season 1</h2>
<ol class="resources episodes episodes--mini">
{% for podcast in podcast reversed %}
{% if podcast.season == 1 %}
{% include episode-mini.html %}
{% endif %}
{% endfor %}
</ol>
<a href="/podcast" class="link-view-more">See more…</a>
</section>
<section>
<h1 class="title">{{site.podcast-title}} ({{site.resourcepodcast | size}})</h1>
<p class="lede">{{site.podcast-description}}</p>
<p class="lede">Through the magic of Huffduffer, you can subscribe to our curated list of style guide related podcasts in your favourite podcast app.</p>
{% include external-podcast-actions.html %}
{% assign section = site.resourcepodcast | sort: 'title' %}
{% include tags.html %}
{% include loop-resources.html %}
{% include add.html %}
</section>