-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (58 loc) · 2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Syntax Shorts!</title>
<link rel="stylesheet" href="./style.css" />
<script src="https://cdn.jsdelivr.net/npm/@mux/mux-player"></script>
<script type="module" src="./shorts.ts"></script>
<meta name="theme-color" content="#000000" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<link rel="shortcut icon" href="./images/Syntax Cover Art.png" />
<link rel="apple-touch-icon" href="./images/Syntax Cover Art.png" />
<meta name="apple-mobile-web-app-capable" content="yes" />
</head>
<body>
<div class="layout">
<div class="video">
<!-- <video
src="./48 Minutes of Clips.mp4"
playsinline
controls
muted
autoplay
loop
></video> -->
<mux-player
playback-id="x7Hh3ees2Sh8DamED5hYj2jcPNXWppcR"
metadata-video-title="Placeholder (optional)"
metadata-viewer-user-id="Placeholder (optional)"
accent-color="#f5ba41"
autoplay
muted
loop
playsinline
></mux-player>
</div>
<div class="details">
<div class="cover-art">
<img src="./images/Syntax Cover Art.png" alt="Syntax" />
</div>
<div class="socials">
<img src="./images/youtube-color.svg" alt="YouTube" />
<img src="./images/spotify-color.svg" alt="Spotify" />
<img src="./images/applepodcasts-color.svg" alt="Apple Podcasts" />
<img src="./images/x-color.svg" alt="X" />
<img src="./images/tiktok-color.svg" alt="TikTok" />
<img src="./images/instagram-color.svg" alt="Instagram" />
<img src="./images/youtubeshorts-color.svg" alt="YouTube Shorts" />
<img src="./images/rss-color.svg" alt="RSS" />
</div>
</div>
</div>
</body>
</html>