-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmobile.html
More file actions
34 lines (31 loc) · 1008 Bytes
/
Copy pathmobile.html
File metadata and controls
34 lines (31 loc) · 1008 Bytes
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Лепай</title>
<link rel="icon" href="icon/icon.png" type="image/png">
<script>
if (window.matchMedia('(min-width: 769px)').matches) {
location.replace('index.html');
}
</script>
<script src="accent.js"></script>
<style>
:root { --accent: #FFFFFF; }
html, body { margin: 0; background: #000; color: var(--accent); font-family: sans-serif; }
</style>
</head>
<body>
<!-- Моб-дизайн будет отдельно. Общие данные уже подключены: -->
<div id="track-title"></div>
<div id="track-artist"></div>
<script src="track.js"></script>
<script>
if (window.TRACK_INFO) {
document.getElementById('track-title').textContent = window.TRACK_INFO.title;
document.getElementById('track-artist').textContent = window.TRACK_INFO.artist;
}
</script>
</body>
</html>