diff options
author | Hayleigh Thompson <me@hayleigh.dev> | 2024-03-17 17:10:46 +0000 |
---|---|---|
committer | Hayleigh Thompson <me@hayleigh.dev> | 2024-03-17 17:10:46 +0000 |
commit | c67f11499310e874ac07844cabf4f05719da8aed (patch) | |
tree | 61178c79be2d8e6f4daf1d6b9df685e24c306e52 /priv/templates/index.html | |
parent | eb73e7622252e130095d41c0e901feba48ecfaf7 (diff) | |
download | lustre-c67f11499310e874ac07844cabf4f05719da8aed.tar.gz lustre-c67f11499310e874ac07844cabf4f05719da8aed.zip |
:recycle: Use external templates for generated files.
Diffstat (limited to 'priv/templates/index.html')
-rw-r--r-- | priv/templates/index.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/priv/templates/index.html b/priv/templates/index.html new file mode 100644 index 0000000..42bd2bf --- /dev/null +++ b/priv/templates/index.html @@ -0,0 +1,15 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + + <title>🚧 {app_name}</title> + + <script type="module" src="./index.mjs"></script> + </head> + + <body> + <div id="app"></div> + </body> +</html> |