summaryrefslogtreecommitdiff
path: root/src/toys/tabloid/index.html
blob: 61ec93722edea01304cb9e2697225b1730e9470b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!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>