-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpiece_template.html
More file actions
executable file
·58 lines (53 loc) · 2.08 KB
/
Copy pathpiece_template.html
File metadata and controls
executable file
·58 lines (53 loc) · 2.08 KB
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
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>Stewart Engart | {{ title }}</title>
<link rel="author" href="../../humans.txt" />
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<link rel="stylesheet" href="../../css/pieces.css" type="text/css" />
{% if audio_exists is sameas true%}
<link rel="stylesheet" href="../../essential_audio.css" />
<script src="../../essential_audio.js"></script>
{% endif %}
</head>
<body>
<div class="header">
<div class="bar">
<h1 class="banner"><a href="/" class="title fancy-link">~sE/works/{{ title }}</a></h1>
<ul>
<li class="nav">{{ instrumentation }}</li>
<li class="nav">{{ year }}</li>
<li class="nav">{{ duration }}</li>
</ul>
</div>
</div>
{% if pic_exists is sameas true%}
<img src="{{ pic }}"/>
<br />
{% else %}
{% endif %}
{{ article}}
{% if audio_exists is sameas true%}
<div class="essential_audio" data-url="{{ audio }}"></div>
<br />
<p>WAV available upon request, < info [at] stewartengart [dot] com >.</p>
{% else %}
<p>The audio for this piece is not available online at the moment.</p>
{% endif %}
{% if score_exists is sameas true%}
<object data="{{score}}" type="application/pdf" width="100%" height="315" overflow-x="scroll"
overflow-y="hidden">
<embed src="{{score}}" type="application/pdf" width="100%" height="315" overflow-x="scroll"
overflow-y="hidden" />
</object>
{% else %}
<p>The score for this piece is not available online at the moment.</p>
{% endif %}
</body>
</html>