-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
48 lines (44 loc) · 1.85 KB
/
index.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
---
layout: default
type: home
title: A live conversation with geeks in town on building, learning and sharing!
---
<input type="text" class="search" id="search" placeholder="search past episodes">
<section class="section">
<ul class="list-posts">
{% for post in site.posts %}
<li data-index="{{ post.description | downcase }}" class="searchable">
<div class="post-thumbnail">
{% if post.topic %}
<img src="{{ site.url }}/img/{{ post.profile }}-profile.jpg" class="attachment-post-thumbnail wp-post-image" alt="{{ post.number}} {{ post.topic }} with {{ post.guest }}"/>
{% else %}
<img src="{{ site.url }}/img/{{ post.profile }}-profile.jpg" class="attachment-post-thumbnail wp-post-image" alt="{{ post.title}}"/>
{% endif %}
</div>
<div class="post-content">
<p>
<a class="title" href="{{site.url}}{{post.permalink}}">
{% if post.topic %}
{{ post.number}} {{ post.topic }} with {{ post.guest }}
{% else %}
{{ post.title }}
{% endif %}
<span> {{ post.date | date_to_string }}, {% if post.day %}{{ post.day }}{% else %}Sat{% endif %} @{% if post.time %}{{ post.time }}{% else %}11am{% endif %}</span>
</a>
</p>
<div class="post">
{% if post == site.posts.first %}
<audio controls=controls preload="auto">
{% else %}
<audio controls=controls preload="none">
{% endif %}
<source src="{{site.audiourl}}/{{ post.enclosure }}.mp3" type="audio/mpeg"></source>
<source src="{{site.audiourl}}/{{ post.enclosure }}.ogg" type="audio/mpeg"></source>
</audio>
</div>
</div>
<p>{{ post.description }} <a href="{{site.url}}{{post.permalink}}">[...show notes]</a></p>
</li>
{% endfor %}
</ul>
</section>