This repository was archived by the owner on Sep 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.26 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.26 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
<!doctype html>
<html lang="en">
<head>
<meta name="referrer" content="origin-when-cross-origin">
<script type="text/x-mathjax-config">
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
</script>
<script type="text/javascript" async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.3/MathJax.js?config=TeX-AMS_CHTML">
</script>
</head>
<body>
<script id='jupyter-config-data' type="application/json">
{
"baseUrl": "{{base_url}}"
}
</script>
<script id='scriptedforms-config-data' type="application/json">
{
"applicationToRun": "{{application_to_run}}",
"publicPath": "{{base_url}}scriptedforms/static/",
"baseUrl": "{{base_url}}scriptedforms/{{application_to_run}}/"
}
</script>
<script src="{{base_url}}scriptedforms/static/polyfills.js"></script>
<script src="{{base_url}}scriptedforms/static/angular.js"></script>
<script src="{{base_url}}scriptedforms/static/jupyterlab.js"></script>
<script src="{{base_url}}scriptedforms/static/misc.js"></script>
<script src="{{base_url}}scriptedforms/static/scriptedforms.js"></script>
{% if application_to_run == 'docs' %}
<doc-root></doc-root>
{% endif %}
</body>
</html>