summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorGrant Shangreaux <shshoshin@protonmail.com>2020-01-12 23:19:28 -0600
committerGrant Shangreaux <shshoshin@protonmail.com>2020-01-12 23:19:28 -0600
commita9a1509405804be9f329a4168515a607b1bbea1e (patch)
tree23f50719bf82563646ba387b253a15ac8ae1ddad /index.html
parent70fb6d7c519d1a81afcc6cbe5aeb6f3b6850e3e6 (diff)
Feature: resume playback from local storage of current tape time
Diffstat (limited to 'index.html')
-rw-r--r--index.html17
1 files changed, 12 insertions, 5 deletions
diff --git a/index.html b/index.html
index e14179f..4624cfc 100644
--- a/index.html
+++ b/index.html
@@ -4,6 +4,7 @@
<meta charset=UTF-8>
<link rel="stylesheet" type="text/css" href="style.css">
<title>Tapes</title>
+ <script src="/skewer"></script>
</head>
<body>
<div class="intro">
@@ -14,12 +15,18 @@
</p>
</div>
<div class="tape-container">
- <a href="tape-deck.html?side=A">
- <img src="images/side-a.jpeg" class="tape">
- </a>
- <a href="tape-deck.html?side=B">
+ <div class="side">
+ <h3>Winter</h3>
+ <a href="tape-deck.html?side=A">
+ <img src="images/side-a.jpeg" class="tape">
+ </a>
+ </div>
+ <div class="side">
+ <h3>Spring</h3>
+ <a href="tape-deck.html?side=B">
<img src="images/side-b.jpeg" class="tape">
- </a>
+ </a>
+ </div>
</div>
</body>
</html>