-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<title>Jupyter Notebook - Notebooks</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="Description" content="WASM powered Jupyter running in the browser." />
<link rel="manifest" href="../manifest.webmanifest" />
<link
id="jupyter-lite-main"
rel="preload"
href="../build/notebooks/bundle.js?_=84a8f16"
main="index"
as="script"
/>
<script
id="jupyter-config-data"
type="application/json"
data-jupyter-lite-root=".."
>
{}
</script>
<script>
(async function () {
const { pathname, origin, search, hash } = window.location;
if (pathname.match(/(index.html|\/?)$/) == null) {
window.location.href = `${origin}${pathname}/${search}${hash}`;
return;
}
await import(
'../config-utils.js?_=84a8f16'
);
}.call(this));
</script>
</head>
<body data-notebook="notebooks"></body>
</html>