diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-07-11 00:50:00 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-07-11 00:50:00 +0200 |
| commit | 91e8fdb99e321496c54288fe5a3db6397c768c10 (patch) | |
| tree | 2bb82323466c7895eb705138e561278b02ce8ca2 /static | |
| parent | 2001ddd7e2a8926ec97fdd4d5c73b2d4e5b293de (diff) | |
building basic site. need to include cursors, etc
Diffstat (limited to 'static')
| -rw-r--r-- | static/site.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/static/site.html b/static/site.html new file mode 100644 index 0000000..18bd0d0 --- /dev/null +++ b/static/site.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="UTF-8"> + <title>PAGE_TITLE</title> + <meta name="viewport" content="width=device-width,initial-scale=1.0"> + <style> + html { background: #000; } + </style> +</head> +<body> +<script> + var s = document.createElement('script'); + s.setAttribute('src', 'BUNDLE_PATH?' + (Date.now() / 3600)) + document.body.appendChild(s) +</script> +</html> |
