Add server skeleton with directory app and local dev loop

This commit is contained in:
Ian Gulliver
2026-08-15 13:07:45 -07:00
parent 4f73673735
commit 80b274c544
8 changed files with 369 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Helios Directory</title>
<link rel="stylesheet" href="/directory/static/style.css">
</head>
<body>
<header>
<h1>Helios Directory</h1>
<input id="search" type="search" placeholder="Search people and families" autofocus>
</header>
<main id="people"></main>
<script src="/directory/static/app.js"></script>
</body>
</html>