summaryrefslogtreecommitdiff
path: root/src/toys/tabloid/index.html
diff options
context:
space:
mode:
authorElizabeth Alexander Hunt <me@liz.coffee>2026-07-05 12:42:44 -0700
committerElizabeth Alexander Hunt <me@liz.coffee>2026-07-05 12:42:44 -0700
commit94b912b649150b9863a62096ba4740b2cc8ad21a (patch)
tree1882236fc980fa5946d3089a2f2e4670f3a70580 /src/toys/tabloid/index.html
parentab0ddcaeb1fc37351d14b89100e07d3a343ba9e1 (diff)
downloadlizdotcoffee-94b912b649150b9863a62096ba4740b2cc8ad21a.tar.gz
lizdotcoffee-94b912b649150b9863a62096ba4740b2cc8ad21a.zip
Factor
Diffstat (limited to 'src/toys/tabloid/index.html')
-rw-r--r--src/toys/tabloid/index.html53
1 files changed, 0 insertions, 53 deletions
diff --git a/src/toys/tabloid/index.html b/src/toys/tabloid/index.html
deleted file mode 100644
index 61ec937..0000000
--- a/src/toys/tabloid/index.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="icon" href="https://adelie.liz.coffee/img/favicon.ico" />
- <link rel="stylesheet" href="https://adelie.liz.coffee/bundle.css">
- <title>Tabloid</title>
-</head>
-<body>
- <main>
- <article>
- <h3>Tabloid</h3>
- <p>Forgotten how to write Tabloid since your schooldays? Here's <a target="_blank" href="https://github.com/thesephist/tabloid/blob/master/README.md#language-overview">a refresher</a>.</p>
-
- <div>
- <label for="program-select">Sample:</label>
- <select id="program-select" aria-label="Sample Tabloid programs"></select>
- </div>
-
- <section class="mt-md">
- <div
- id="code-editor"
- class="code-editor-container"
- aria-label="Tabloid source code"
- spellcheck="false"
- autocomplete="off"
- autocorrect="off"
- ></div>
- </section>
-
- <div class="mt-sm">
- <button id="run-button" class="primary">Run (Ctrl + Enter)</button>
- <button id="clear-button">Clear Output</button>
- </div>
-
- <section class="mt-md">
- <h4>stdout</h4>
- <pre id="stdout-content" aria-live="polite"></pre>
- </section>
-
- <section class="mt-md">
- <h4>stderr</h4>
- <pre class="text-error" id="error-content" aria-live="polite"></pre>
- </section>
- </article>
- </main>
-
- <script src="https://adelie.liz.coffee/bundle.js"></script>
- <script src="https://adelie.liz.coffee/adelie-editor.js"></script>
- <script type="module" src="./js/main.js"></script>
-</body>
-</html>