30 lines
743 B
HTML
Raw Permalink Normal View History

2025-02-11 23:04:28 +01:00
<!DOCTYPE html>
<html>
<head>
<title>VideoBase</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="js/config.js" defer></script>
<script src="js/api.js" defer></script>
<script src="js/components.js" defer></script>
<script src="js/base.js" defer></script>
2025-02-11 23:04:28 +01:00
<script src="js/index.js" defer></script>
<link rel="stylesheet" href="style/base.css">
<link rel="stylesheet" href="style/components.css">
<link rel="stylesheet" href="style/index.css">
</head>
<body>
<noscript>Unfortunately, this page requires JavaScript to work correctly</noscript>
<div id="loading">Loading...</div>
<div id="error" style="display: none;"></div>
2025-02-11 23:04:28 +01:00
<h1>Library</h1>
<div id="root"></div>
</body>
</html>