-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (89 loc) · 3 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>wolfleague</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
type="text/css"
href="./css/index.css"
media="screen"
/>
<!-- start custom head snippets, customize with your own _includes/head-custom.html file -->
<!-- Setup theme-color -->
<!-- start theme color meta headers -->
<meta name="msapplication-navbutton-color" content="#151515" />
<meta name="theme-color" content="#151515" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<!-- end theme color meta headers -->
<!-- You can set your favicon here -->
<link rel="icon" type="image/x-icon" href="./images/favicon.ico" />
<!-- end custom head snippets -->
<meta property="og:title" content="wolfleague" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="wolfleague music player" />
<meta property="og:description" content="wolfleague music player" />
<link rel="canonical" href="https://wolfleague.info" />
<meta property="og:url" content="https://wolfleague.info" />
<meta property="og:site_name" content="wolfleague" />
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="wolfleague" />
<script type="application/ld+json">
{
"description": "wolfleague music player",
"url": "https://wolfleague.info",
"@type": "WebSite",
"headline": "wolfleague",
"name": "wolfleague",
"@context": "https://schema.org"
}
</script>
</head>
<body>
<header>
<div class="container">
<h1>./wolfleague</h1>
<h2>
<em
>A shadowy flight into the dangerous world of a man who does not
exist</em
>
</h2>
</div>
</header>
<div class="container">
<section id="main-content">
<div class="audio-container">
<div class="now-playing-container">
Now playing
<img src="./images/bullet.png" alt="playing-arrow" /><span
class="track-title"
id="now-playing"
>Gather</span
>
</div>
<div>
<audio controls id="audio-player" class="audio-player">
<source
id="audio-player-source"
src="./media/wolf_league-gather.mp3"
type="audio/mpeg"
/>
Your browser does not support the audio element.
</audio>
</div>
</div>
<div class="album-title" id="album-title">
<h3>We tell ourselves stories</h3>
</div>
<div id="track-container" class="track-container"></div>
</section>
</div>
<script src="./main.js" type="application/javascript"></script>
</body>
</html>