summaryrefslogtreecommitdiff
path: root/example/episodes.html
blob: 19564721069afc2cb482d8cfb3dd5be4be9e53e7 (plain)
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
<!DOCTYPE html>
<html>
    <head>
        <title>{{ entry.title }}</title>
    </head>
    <body>
        <article>
            <header>
                <h1>{{ entry.title }}</h1>
                {% if entry.album %}
                    <h2>Part of the {{ entry.album }} series.</h2>
                {% endif %}
            </header>
            By {{ entry.artist }}
            On {{ entry.date | date(format="%b %d, %Y") }}

            <p>
                <audio controls="controls">
                    <source src="/{{ entry.filename }}" type="audio/mpeg" />
                    Your browser does not support the audio tag. Please download the MP3.
                </audio>
            </p>
            <p><a href="/{{ entry.filename }}">Download MP3</a></p>
        </article>
    </body>
</html>