mirror of
https://github.com/pyscript/pyscript.git
synced 2022-05-01 19:47:48 +03:00
33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
|
|
<title>PyScript demo</title>
|
|
|
|
<link rel="icon" type="image/png" href="favicon.png" />
|
|
<link rel="stylesheet" href="build/bundle.css" />
|
|
|
|
<script defer src="build/bundle.js"></script>
|
|
</head>
|
|
|
|
<body class="container">
|
|
|
|
<h1 class="text-3xl font-bold">PyScript demos</h1>
|
|
<hr/>
|
|
|
|
<h2 class="text-2xl font-bold text-blue-600"><a href="./simple_script.html">Simple script</a></h2>
|
|
<p>A static demo of the <code><py-script></code> tag</p>
|
|
|
|
<h2 class="text-2xl font-bold text-blue-600"><a href="./simple_script2.html">Simple script 2</a></h2>
|
|
<p>A dynamic demo of the <code><py-script></code> tag</p>
|
|
|
|
<h2 class="text-2xl font-bold text-blue-600"><a href="./repl.html">REPL</a></h2>
|
|
<p>A Python REPL (Read Eval Print Loop). </p>
|
|
|
|
<h2 class="text-2xl font-bold text-blue-600"><a href="./repl2.html">REPL2</a></h2>
|
|
<p>A Python REPL (Read Eval Print Loop) with slightly better formatting.</p>
|
|
</body>
|
|
</html>
|