systemquery/src/static/index.html
Starbeamrainbowlabs 30b20f8e18
client: Add initial on load UI logic.
It's still missing static/js/tabledefs/index.mjs though
2022-03-10 03:26:08 +00:00

33 lines
867 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<title>systemquery</title>
</head>
<body>
<header>
<h1>systemquery</h1>
<p><span class="version-label">Version</span> <span class="version">???</span></p>
</header>
<nav>
<ul class="nav-items">
<!-- Any items specified here *must* have the "static" class, otherwise they'll be mistaken for a rogue dynamic item and stripped -->
<li class="static"><a href="#settings">
<span class="fa fa-cog fa-fw" aria-hidden="true"></span>
Settings
</a></li>
</ul>
</nav>
<main>
<h2>Loading...</h2>
</main>
<!---------------->
<link rel="stylesheet" href="/static/app.css?hash={CSS_HASH_SHORT}" integrity="{ALGO}-{CSS_HASH}" />
<script src="/static/app.js?hash={JS_HASH_SHORT}" integrity="{ALGO}-{JS_HASH}" charset="utf-8"></script>
</body>
</html>