diff options
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | index.html | 12 |
2 files changed, 15 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ba641f6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/data +/target +/web diff --git a/index.html b/index.html new file mode 100644 index 0000000..cd0fe1d --- /dev/null +++ b/index.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <title>Jellything</title> + </head> + <body> + <h1>Jellything</h1> + <p>Project page is work in progress...</p> + </body> +</html> |