22 lines
661 B
HTML
22 lines
661 B
HTML
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>underBBS</title>
|
|
<meta name="viewport" content="width=device-width" />
|
|
<link rel="shortcut icon" href="./favicon.png"/>
|
|
<link href="./style.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<noscript><div id="noscript_container">
|
|
JS app lol
|
|
</div>
|
|
</noscript>
|
|
<div id="err_wrapper" style='display:none'><button id="err_close" onclick="closeErr()">x</button><div id="err_div"></div></div>
|
|
<nav id="tabbar_injectparent">
|
|
</nav>
|
|
<main id="mainarea_injectparent">
|
|
</main>
|
|
</body>
|
|
<script src="./main.js" type="application/javascript"></script>
|
|
</html>
|