ufh/web/index.html
2023-08-02 19:50:37 -07:00

26 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Thing</title>
<link rel="stylesheet" href="style.scss" />
<link rel="stylesheet" href="animations.css" />
</head>
<body>
<noscript>
<div class="nojs">
<main>
<h1>oh no</h1>
<p>This website needs javascript to function or even interact with the protocol at all.</p>
<p>Since it's 2023, you're probably part of a technical crowd who explicitly disables js. If you aren't, take a look at <a href="https://www.enable-javascript.com/">"how to enable javascript"</a> for help.</p>
<p>Otherwise, you can try looking at the <a href="https://git.celery.eu.org/tezlm/ufh">code</a> or <a href="https://git.celery.eu.org/tezlm/ufh">protocol spec</a> instead.</p>
<br />
<p>(In this protocol, servers are designed to be dumb relays and can't statically render pages for you - sorry about that.)</p>
</main>
</div>
</noscript>
<div id="root"></div>
<script type="module" src="./main.ts"></script>
</body>
</html>