-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
43 lines (33 loc) · 1.95 KB
/
index.html
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
<!-- LTK - Copyright 2024 - All Rights Reserved - chrislaffra.com - See LICENSE -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>LTK</title>
<meta charset="UTF-8">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<meta name="viewport" content="width=device-width,initial-scale=1">
<script src="mini-coi.js"></script>
<!-- Import PyScript - see kitchensink.js for activation -->
<script type="module" src="https://pyscript.net/releases/2024.10.2/core.js"></script>
<link rel="stylesheet" href="https://pyscript.net/releases/2024.10.2/core.css" />
<!-- Import jQuery - used in ltk/jquery.py -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery-ui.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.13.2/themes/base/jquery-ui.css"/>
<!-- Codemirror Interactive Editor -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.35.0/codemirror.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/6.65.7/mode/python/python.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/6.65.7/codemirror.min.css" >
<!-- Import for drawing arrows -->
<script defer src="leader-line.min.js"></script>
<!-- Import Styles for the kitchensink demo -->
<link rel="stylesheet" href="kitchensink.css">
</head>
<body>
<!-- Add a progress animation. This will be removed by main.py -->
<div id="progress"><img src="progress_line.gif"></div>
<h1 id="title">The <a href=https://github.com/laffra/ltk>LTK</a> Kitchensink for PyScript running</h1>
<!-- Load JavaScript logic to choose the Python runtime -->
<script src="kitchensink.js"></script>
</body>
</html>