-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdemo.html
More file actions
62 lines (57 loc) · 2.03 KB
/
Copy pathdemo.html
File metadata and controls
62 lines (57 loc) · 2.03 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Pytml - Demo</title>
<script src="https://pytml.vercel.app/pytml.js"></script>
<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="sitemap" type="application/xml" title="Sitemap" href="https://pytml.js.org/sitemap.xml" />
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/favicon-48x48.png" sizes="48x48">
<link rel="manifest" href="/site.webmanifest">
<link rel="icon" type="image/png" href="/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="/android-chrome-512x512.png" sizes="512x512">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#3b82f6">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<style>
body {
margin: 0;
min-height: 100vh;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
font-family: system-ui, -apple-system, sans-serif;
}
.container {
max-width: 700px;
margin: 0 auto;
padding: 40px 20px;
}
.card {
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 30px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
text-align: center;
}
h1 {
margin: 0 0 10px 0;
color: white;
}
p {
color: rgba(255,255,255,0.8);
margin-bottom: 30px;
}
</style>
</head>
<body>
<div class="container">
<div class="card">
<h1>Pytml Demo</h1>
<p>All inputs and output are from script.py</p>
</div>
</div>
<script type="text/python" src="script.py"></script>
</body>
</html>