forked from recloudstream/cloudstream
1db8f98391
* site list changes - made site-list.json automatically create providers.json - removed site list from readme (now shows a link) - remove jquery dependency and split src into multiple files * update workflow file * oops wrong number * fix invalid regex * status 1 * revert providers.json
23 lines
615 B
HTML
23 lines
615 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
|
|
<title>CloudStream-3 Supported Sites</title>
|
|
<link rel="stylesheet" href="/style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div>
|
|
<h1>Sites supported (<span id="count">0</span>):</h1>
|
|
<table>
|
|
<tbody id="siteList"></tbody>
|
|
</table>
|
|
</div>
|
|
<script src="/script.js" type="text/javascript"></script>
|
|
</body>
|
|
|
|
</html>
|