aboutsummaryrefslogtreecommitdiff
path: root/src/index.html
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2025-11-14 08:35:35 +0100
committerMartin Fischer <martin@push-f.com>2025-11-14 08:36:40 +0100
commit067e52bc973931680da025b4f012f92f94bdbe53 (patch)
tree77713dee7e54fa5b161178f8907fe3cf5cc70a84 /src/index.html
parent036895f35ed6cb1b7832c0c1dc42c5d95a8b247f (diff)
fix(build): move src files to src/HEADmaster
The nix derivation src didn't use lib.cleanSource. Putting the source files into a separate directory is even better since it avoids unnecessary rebuilds.
Diffstat (limited to 'src/index.html')
-rw-r--r--src/index.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/index.html b/src/index.html
new file mode 100644
index 0000000..a3a747d
--- /dev/null
+++ b/src/index.html
@@ -0,0 +1,26 @@
+<!doctype html>
+<html>
+ <meta charset="utf-8">
+ <title>Share a geographic position</title>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
+ <body>
+ <div id="content"></div>
+ <noscript>This website requires JavaScript</noscript>
+ <script src="script.js"></script>
+ <style>
+ body {
+ max-width: 40ch;
+ margin: 1em auto;
+ padding: 0 0.5em;
+ font-size: 1.2em;
+ }
+ li {
+ padding: 1em;
+ }
+ .input-group { display: flex; gap: 0.2em; margin-bottom: 1em; }
+ .input-group input { flex-grow: 1; }
+ input, button { font-size: inherit; }
+ .error { color: darkred; }
+ </style>
+ </body>
+</html>