diff options
author | Christian Cleberg <hello@cleberg.net> | 2024-02-21 22:41:07 -0600 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2024-02-21 22:41:07 -0600 |
commit | 3110e0e5130b9f9b5a832cf0d6ad9d46490003ad (patch) | |
tree | b935dea8ed2b63d3de21e214bb451bb904c3f69d /index.html | |
download | org-live-3110e0e5130b9f9b5a832cf0d6ad9d46490003ad.tar.gz org-live-3110e0e5130b9f9b5a832cf0d6ad9d46490003ad.tar.bz2 org-live-3110e0e5130b9f9b5a832cf0d6ad9d46490003ad.zip |
initial commit
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..02a784f --- /dev/null +++ b/index.html @@ -0,0 +1,35 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <title>org-live</title> + <link rel="stylesheet" href="./static/styles.css" /> + </head> + <body> + <form autocomplete> + <div> + <label for="editor">org-live</label> + <span class="spacer"></span> + <button type="button" onclick="showHTML();">Show HTML</button> + <button type="button" onclick="saveHTML();">Save HTML</button> + <button type="button" onclick="saveOrg();">Save Org</button> + </div> + <textarea + id="editor" + name="editor" + autocapitalize="on" + autocorrect="on" + spellcheck="on" + placeholder="* Lorem Ipsum" + cols="80" + wrap="hard" + autofocus + required + ></textarea> + </form> + <dialog id="modal"></dialog> + <script src="./static/org.js"></script> + <script src="./static/app.js"></script> + </body> +</html> |