2021-06-16 23:27:35 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<!--
|
|
|
|
░░░░░░░█▐▓▓░████▄▄▄█▀▄▓▓▓▌█ very website
|
|
|
|
░░░░░▄█▌▀▄▓▓▄▄▄▄▀▀▀▄▓▓▓▓▓▌█
|
|
|
|
░░░▄█▀▀▄▓█▓▓▓▓▓▓▓▓▓▓▓▓▀░▓▌█
|
|
|
|
░░█▀▄▓▓▓███▓▓▓███▓▓▓▄░░▄▓▐█▌ such html
|
|
|
|
░█▌▓▓▓▀▀▓▓▓▓███▓▓▓▓▓▓▓▄▀▓▓▐█
|
|
|
|
▐█▐██▐░▄▓▓▓▓▓▀▄░▀▓▓▓▓▓▓▓▓▓▌█▌ WOW
|
|
|
|
█▌███▓▓▓▓▓▓▓▓▐░░▄▓▓███▓▓▓▄▀▐█
|
|
|
|
█▐█▓▀░░▀▓▓▓▓▓▓▓▓▓██████▓▓▓▓▐█
|
|
|
|
▌▓▄▌▀░▀░▐▀█▄▓▓██████████▓▓▓▌█▌
|
|
|
|
▌▓▓▓▄▄▀▀▓▓▓▀▓▓▓▓▓▓▓▓█▓█▓█▓▓▌█▌ many music
|
|
|
|
█▐▓▓▓▓▓▓▄▄▄▓▓▓▓▓▓█▓█▓█▓█▓▓▓▐█
|
|
|
|
-->
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
|
|
<meta name="HandheldFriendly" content="True">
|
|
|
|
<meta name="MobileOptimized" content="320">
|
|
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
<meta name="apple-mobile-web-app-title" content="IRC!Radio">
|
|
|
|
<meta name="application-name" content="IRC!Radio">
|
|
|
|
<meta name="msapplication-TileColor" content="#da532c">
|
|
|
|
<meta name="description" content="IRC!Radio"/>
|
2021-08-05 23:49:14 +00:00
|
|
|
<title>IRC!Radio ala Scoob!</title>
|
2021-06-16 23:27:35 +00:00
|
|
|
|
2023-02-05 18:33:57 +00:00
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="static/favicons/apple-touch-icon.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="static/favicons/favicon-32x32.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="static/favicons/favicon-16x16.png">
|
|
|
|
<!-- <link rel="manifest" href="/site.webmanifest"> -->
|
|
|
|
<link rel="mask-icon" href="static/favicons/safari-pinned-tab.svg" color="#5bbad5">
|
|
|
|
<meta name="msapplication-TileColor" content="#2b5797">
|
|
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
|
2021-06-16 23:27:35 +00:00
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
|
2023-02-05 18:33:57 +00:00
|
|
|
|
|
|
|
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"></link>
|
|
|
|
|
|
|
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
|
|
|
|
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js" integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU=" crossorigin="anonymous"></script>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
var ws = new WebSocket('wss://' + document.domain + ':' + location.port + '/ws');
|
|
|
|
|
|
|
|
ws.onmessage = function (event) {
|
|
|
|
// console.log(event.data);
|
|
|
|
json = JSON.parse(event.data);
|
|
|
|
np = json.now_playing;
|
|
|
|
document.querySelector("#prev_two").innerText = document.querySelector("#prev_one").innerText;
|
|
|
|
document.querySelector("#prev_one").innerText = document.querySelector("#now_playing").innerText;
|
|
|
|
document.querySelector("#now_playing").innerText = np;
|
|
|
|
console.log(np);
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
ws.onclose = function(event) {
|
|
|
|
console.log("WebSocket is closed now.");
|
|
|
|
};
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
2021-06-16 23:27:35 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
{% block content %} {% endblock %}
|
|
|
|
</body>
|
2021-08-05 23:49:14 +00:00
|
|
|
</html>
|