mirror of
https://github.com/danbulant/console-hub
synced 2026-05-20 12:58:41 +00:00
31 lines
942 B
HTML
31 lines
942 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" dir="ltr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Console hub</title>
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"><!-- include material icons -->
|
|
<link rel="stylesheet" href="../../dist/css/styles.min.css"><!-- include custom stylesheet -->
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self' https://fonts.googleapis.com http://dist.danbulant.eu 'unsafe-inline';
|
|
font-src *;
|
|
img-src *">
|
|
</head>
|
|
<body>
|
|
<div class='box'>
|
|
<div class='wave -one'></div>
|
|
<div class='wave -two'></div>
|
|
<div class='wave -three'></div>
|
|
</div>
|
|
|
|
<div id="view">
|
|
|
|
</div>
|
|
|
|
|
|
<script>
|
|
if (typeof module === 'object') {window.module = module; module = undefined;}
|
|
</script>
|
|
<script src="../dep/jquery.min.js"></script>
|
|
<script>if (window.module) module = window.module;</script>
|
|
<script src="main.js"></script>
|
|
</body>
|
|
</html>
|