Files

33 lines
1015 B
HTML
Raw Permalink Normal View History

2024-02-20 10:25:34 -07:00
<html data-theme="dark">
2024-01-05 08:59:40 -07:00
<head>
<link href="/src/pico.min.css" rel="stylesheet">
<link href="/src/style.css" rel="stylesheet">
2024-02-20 10:25:34 -07:00
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="color-scheme" content="light dark" />
2024-01-05 08:59:40 -07:00
<title><!--Place title here!!!--></title>
</head>
<body>
2024-02-20 10:25:34 -07:00
<nav class="navbar text-invert noselect">
2024-01-05 08:59:40 -07:00
<ul class="nav">
<!--Place tabs here!!!-->
2024-02-20 10:25:34 -07:00
<h2 class="navconntext text-invert" id="connecticon" onclick="window.location.reload()" style="cursor:pointer;">
2024-01-05 08:59:40 -07:00
Disconnected
</h2>
</ul>
</nav>
2024-02-20 10:25:34 -07:00
<div class="navpanel text-invert noselect">
<a href="<!--Place defaultPage here!!!-->" class="text-invert navTitle">
2024-01-05 08:59:40 -07:00
<!--Place title here!!!-->
</a>
<hr>
<!--Place pages here!!!-->
<hr>
</div>
<div class="maindiv">
<!--Place body here!!!-->
</div>
<div id="popupBox" class="popupBox"> </div>
<script type="module" src="/src/main.js"></script>
2024-02-20 10:25:34 -07:00
</body>
</html>