mirror of
https://github.com/pyscript/pyscript.git
synced 2022-05-01 19:47:48 +03:00
24 lines
585 B
HTML
24 lines
585 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
|
|
<title>Svelte app</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>
|
|
<div id="outputDiv" style="background-color:yellow"></div>
|
|
<py-script target="outputDiv">
|
|
from datetime import datetime
|
|
now = datetime.now()
|
|
now.strftime("%m/%d/%Y, %H:%M:%S")
|
|
</py-script>
|
|
</body>
|
|
</html>
|