-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.ejs
105 lines (100 loc) · 4.08 KB
/
index.ejs
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<meta property="og:image" content="http://polyop.uk/run_grids/assets/images/share.jpg" />
<title><%= htmlWebpackPlugin.options.title %></title>
<style>
body {
background: black;
margin: 0;
}
@keyframes flash {
0.01% {
opacity: 0
},
50% {
opacity: 0
}
50.01% {
opacity: 1
},
100% {
opacity: 0
}
}
.ui-container {
display: none;
}
.loading {
display: flex;
color: white;
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
align-items: center;
justify-content: center;
font-family: "Console", monospace;
animation: flash 0.1s infinite;
}
</style>
</head>
<body class="info-is-showing">
<div class="loading">
<span>Loading...</span>
</div>
<div class="ui-container">
<div class="content-container">
<div id="intro" class="content">
<h1>polyop - run_grids</h2>
<p>Headphones recommended. Google Chrome recommended. Modern device recommended. Phase-shift brain cap recommended.</p>
<p><a class="button button-large" id='control-play' href="#">> <span id="resume-run">run</span>_grids.exe</a></p>
<p><a class="button" href="https://polyop.bandcamp.com/album/run-test-polyx0x-001" data-ga-track>> .wav & .mp3 --bandcamp</a></p>
<p><a class="button" href="https://github.com/funwithtriangles/polyx0x-001" data-ga-track>> view source --github</a></p>
<p><br>Also available on <a data-ga-track href="https://open.spotify.com/album/4myUNAu6wuSh9bPlJVQ0a1?si=83LxGOhDQPewPQrT0g4O2g">Spotify</a> and <a data-ga-track href="https://soundcloud.com/polyop/sets/run_test-polyx0x_001">Soundcloud</a>.<a>
</div>
<div id="outro" class="content">
<div class="row">
<a href="https://polyop.bandcamp.com/album/run-test-polyx0x-001" data-ga-track><img src="assets/images/cover.gif" alt="EP Cover"></a>
<div>
<h1>polyop - run_test [polyx0x_001]</h2>
<p>Free EP available via <a href="https://polyop.bandcamp.com/album/run-test-polyx0x-001" data-ga-track>Bandcamp</a>.
Also available on <a data-ga-track href="https://open.spotify.com/album/4myUNAu6wuSh9bPlJVQ0a1?si=83LxGOhDQPewPQrT0g4O2g">Spotify</a> and <a data-ga-track href="https://soundcloud.com/polyop/sets/run_test-polyx0x_001">Soundcloud</a>.</p>
<p><a class="button button-large" href="https://polyop.bandcamp.com/album/run-test-polyx0x-001" data-ga-track>> free download</a></p>
<p><a class="button" href="https://github.com/funwithtriangles/polyx0x-001" data-ga-track>> view source --github</a></p>
<p><a class="button" href="/">> more at polyop.uk</a></p>
</div>
</div>
</div>
</div>
<a class="cta-mini" href="https://polyop.bandcamp.com/album/run-test-polyx0x-001" data-ga-track>
<img src="assets/images/cover.gif" alt='EP Cover'>
<div class="cta-mini__text">
<h2>> download EP --bandcamp</h2>
<p>polyop - run_test [polyx0x_001]</p>
</div>
</a>
<a class="controls" href="#">
<img src='assets/images/pause.svg' class="control-pause" alt="Pause" />
<img src='assets/images/play.svg' class="control-play" alt="Play" />
</a>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-60252396-1', 'auto');
ga('send', 'pageview');
function trackOutboundLink(url) {
ga('send', 'event', 'outbound', 'click', url, {
'transport': 'beacon',
'hitCallback': function(){document.location = url;}
});
}
</script>
</body>
</html>