pupate

No description provided
git clone https://git.woozle.org/neale/pupate.git

pupate / variants / sctr / web
Neale Pickett  ·  2025-02-27

index.html

 1<!DOCTYPE html>
 2<html>
 3  <head>
 4    <title>Pupate</title>
 5    <link rel="stylesheet" href="sctr.css">
 6    <link rel="icon" href="sctr.svg">
 7    <script src="update-reload.mjs" type="module" async></script>
 8    <script src="sctr.mjs" type="module"></script>
 9  </head>
10  <body>
11    <div class="loading">
12      <progress></progress>
13    </div>
14
15    <div class="traininglist hidden">
16      <h1 class="title">Trainings</h1>
17    </div>
18    
19    <div class="training hidden">
20      <h1 class="title"><slot name="title">title</slot></h1>
21      <p><slot name="description">description</slot></p>
22      <ul><slot name="modules"></slot></ul>
23      <p>Version <slot name="version"><i>undefined</i></slot></p>
24      <p>Blueprint <slot name="blueprint"><i>undefined</i></slot></p>
25      <ul><slot name="authors"></slot></ul>
26    </div>
27
28    <div class="module hidden">
29      <h1 class="title"><slot name="title">title</slot></h1>
30      <div class="content"><slot name="content">[content here]</slot></div>
31      <form class="answer">
32        <label>
33          <slot name="question">Answer:</slot>
34          <input name="answer">
35        </label>
36        <button name="submit">Submit</button>
37      </form>
38      <ul><slot name="required_files" data-links></slot></ul>
39    </div>
40
41    <div class="error hidden">
42      <h1 class="title">Error</h1>
43    </div>
44
45    <div class="toasts"></div>
46
47
48    <footer>
49      <div>
50        <a href="/docs/puzzle-format.md" target="_blank">Formatting</a>
51        |
52        <a href="/docs/" target="_blank">Documentation</a>
53      </div>
54    </footer>
55
56  </body>
57</html>