forked from thanpolas/listenshiprepeat.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (26 loc) · 711 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (26 loc) · 711 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
---
layout: default
---
<div class="summaries">
{% for post in site.posts %}
<article class="summary">
<h2><a href="{{ post.url }}">Episode {{ post.episodeNumber }}: {{ post.title }}</a></h2>
<p class="summary-content">
{{ post.description }}
</p>
<a href="{{ post.url }}" class="btn btn-default">Listen to it</a>
<div class="row summary-meta">
<div class="col-md-4">
Posted <span>{{ post.date | date: "%B %-d, %Y" }}</span>
</div>
<div class="col-md-8 text-right">
<ul class="tags">
{% for tag in post.tags %}
<li>{{ tag }}</li>
{% endfor %}
</ul>
</div>
</div>
</article>
{% endfor %}
</div>