-
Notifications
You must be signed in to change notification settings - Fork 21
/
post.html
30 lines (23 loc) · 862 Bytes
/
post.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
---
layout: default
---
<article class="post" >
<h1 class="u-full-width" >{{ page.title }}</h1>
<p class="post-meta"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time> | A discussion with {{ page.voices }}</p>
<div class="container center-content">
<div class="seven columns">
<audio controls>
<source src="{{ page.file }}" type="audio/mp3">
</audio>
</div>
<div class="four columns center-content">
<a href="{{ site.baseurl }}{{ page.file }}" class="button u-full-height" download="{{ page.title }}">Download Now</a>
</div>
</div>
<div>
{{ content }}
<p><em>Keywords - {{ page.keywords }}</em></p>
</div>
</article>
<script src="{{ site.baseurl }}/js/plyr.js"></script>
<script>plyr.setup();</script>