31 строка
952 B
Plaintext
31 строка
952 B
Plaintext
|
<!DOCTYPE html>
|
||
|
<html lang="ru-RU">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<title></title>
|
||
|
<link rel="stylesheet" href="/static/styles/main.css" />
|
||
|
<style>
|
||
|
html {
|
||
|
justify-content: {{ justify_content }};
|
||
|
align-items: {{ align_items }};
|
||
|
}
|
||
|
</style>
|
||
|
<script src="/static/scripts/color-thief.umd.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="root">
|
||
|
<div id="music" class="hidden">
|
||
|
<span class="title">Сейчас играет</span>
|
||
|
<div class="progress-bar">
|
||
|
<img class="cover" />
|
||
|
<div class="data">
|
||
|
<span class="title"></span>
|
||
|
<span class="artists"></span>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
<script src="/static/scripts/main.js"></script>
|
||
|
</html>
|