add basic resource viewing

Signed-off-by: Arthur Lu <learthurgo@gmail.com>
This commit is contained in:
2023-04-03 21:57:03 +00:00
parent 33fe93089e
commit 8e60ece366
4 changed files with 55 additions and 2 deletions

23
resources.html Normal file
View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>tronnet - client</title>
<link rel="icon" href="images/favicon.svg" sizes="any" type="image/svg+xml">
<link rel="stylesheet" href="css/style.css" type="text/css">
<script src="scripts/resources.js" type="module"></script>
</head>
<body>
<header>
<nav>
<a href="index.html">INSTANCES</a>
<a href="resources.html" aria-current="true">RESOURCES</a>
<a href="login.html">LOGOUT</a>
</nav>
</header>
<main>
</main>
<footer><p>&copy; tronnet</p></footer>
</body>
</html>