-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
46 lines (36 loc) · 1.58 KB
/
demo.html
File metadata and controls
46 lines (36 loc) · 1.58 KB
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="stylesheet" href="./css/turtleps.css" />
<link rel="stylesheet" href="https://pyscript.net/releases/2025.3.1/core.css">
<script type="module">
import { run_from_params } from "./js/turtleps.js";
await run_from_params();
</script>
<link rel="icon" type="image/png" href="./img/favicon.png" />
<title>Turtle Pyscript Demos</title>
</head>
<body>
<nav id="tps-navbar">
<div class="tps-app-header">
<a href="/">
<!--<img src="./img/logo.png" class="logo" /> -->
</a>
<a class="tps-title" href="https://github.com/CoderDojoTrento/turtle-pyscript">Turtle Pyscript</a>
<span class="tps-menu-bar">
<span class="tps-menu-header">DEMOS:</span>
<a class="tps-menu-header" href="demo.html?s=demo/storytelling.py"> Storytelling</a>
<a class="tps-menu-header" href="demo.html?s=demo/space_rocket.py"> Space rocket</a>
<a class="tps-menu-header" href="minimal.html"> Minimal</a>
<a class="tps-menu-header" href="test.html?s=test/uitests_all.py"> TESTS</a>
</span>
</div>
<div id="tps-options-box"></div>
</nav>
<div id="tps-game-area">
<div id="tps-game-box"> </div>
</div>
</body>
</html>