forked from NeurodataWithoutBorders/nwb-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·112 lines (100 loc) · 5.57 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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>NWB GUIDE</title>
<link rel="stylesheet" href="assets/css/variables.css" />
<link rel="stylesheet" href="assets/css/nativize.css" />
<link rel="stylesheet" href="assets/css/global.css" />
<link rel="stylesheet" href="assets/css/nav.css" />
<link rel="stylesheet" href="assets/css/section.css" />
<link rel="stylesheet" href="assets/css/demo.css" />
<link rel="stylesheet" href="assets/css/individualtab.css" />
<link rel="stylesheet" href="assets/css/main_tabs.css" />
<link rel="stylesheet" href="node_modules/cropperjs/dist/cropper.css" />
<link rel="stylesheet" href="node_modules/notyf/notyf.min.css" />
<link rel="stylesheet" href="assets/css/spur.css" />
<link rel="stylesheet" href="assets/css/main.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<link rel="stylesheet" href="node_modules/@fortawesome/fontawesome-free/css/all.css" />
<link rel="stylesheet" href="node_modules/select2/dist/css/select2.min.css" />
<link rel="stylesheet" href="node_modules/@toast-ui/editor/dist/toastui-editor.css" />
<link rel="stylesheet" href="node_modules/tui-date-picker/dist/tui-date-picker.css" />
<link rel="stylesheet" href="node_modules/codemirror/lib/codemirror.css" />
<link rel="stylesheet" href="node_modules/@yaireo/tagify/dist/tagify.css" />
<link rel="stylesheet" href="node_modules/fomantic-ui/dist/semantic.min.css" />
<link rel="stylesheet" href="node_modules/fomantic-ui/dist/components/accordion.min.css" />
<link
rel="stylesheet"
href="node_modules/@tarekraafat/autocomplete.js/dist/css/autoComplete.02.css"
/>
<link rel="stylesheet" href="node_modules/@sweetalert2/theme-bulma/bulma.css" />
<link rel="stylesheet" href="node_modules/bootstrap-select/dist/css/bootstrap-select.min.css" />
<link rel="stylesheet" href="node_modules/jstree/dist/themes/default/style.min.css" />
<link rel="stylesheet" href="node_modules/tippy.js/dist/tippy.css" />
<link rel="stylesheet" href="node_modules/tippy.js/themes/light.css" />
<link rel="stylesheet" href="node_modules/intro.js/minified/introjs.min.css" />
<link rel="stylesheet" href="assets/css/guided.css" />
<link rel="stylesheet" href="https://jsuites.net/v4/jsuites.css" type="text/css" />
<link rel="stylesheet" href="https://bossanova.uk/jspreadsheet/v4/jexcel.css" type="text/css" />
<!-- <link rel="import" href="sections/getting_started/getting_started.html" />
<link rel="import" href="sections/manage_datasets/manage_datasets.html" />
<link rel="import" href="sections/post_curation/post_curation.html" />
<link rel="import" href="sections/prepare_metadata/metadata_templates.html" />
<link rel="import" href="sections/prepare_metadata/create_submission.html" />
<link rel="import" href="sections/prepare_metadata/create_subjects.html" />
<link rel="import" href="sections/prepare_metadata/dataset_description.html" />
<link rel="import" href="sections/prepare_metadata/create_samples.html" />
<link rel="import" href="sections/prepare_metadata/create_changes.html" />
<link rel="import" href="sections/prepare_metadata/create_readme.html" />
<link rel="import" href="sections/prepare_metadata/create_manifest.html" />
<link rel="import" href="sections/curate/curate.html" />
<link rel="import" href="sections/main_tabs/main_tabs.html" />
<link rel="import" href="sections/documentation/documentation.html" />
<link rel="import" href="sections/validate/validate_dataset.html" />
<link rel="import" href="sections/contact-us/contact_us.html" />
<link rel="import" href="sections/guided_mode/guided_curate_dataset.html" /> -->
<style>
#notification {
position: fixed;
bottom: 20px;
right: 20px;
width: 288px;
padding: 20px;
z-index: 10000000;
border-radius: 5px;
background-color: white;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
#version {
white-space: nowrap;
}
.hidden {
display: none;
}
</style>
</head>
<body>
<nwb-dashboard name="NWB GUIDE"></nwb-dashboard>
<!-- Required inclusion of jQuery based on legacy SODA DOM manipulation strategy -->
<script src="node_modules/jquery/dist/jquery.min.js"></script> <!-- Vite -->
<script>isElectron = navigator.userAgent.toLowerCase().indexOf(' electron/') > -1; if (isElectron) window.$ = window.jQuery = require("jquery"); </script> <!-- Electron -->
<script src="node_modules/cropperjs/dist/cropper.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="node_modules/fomantic-ui/dist/components/accordion.js"></script>
<script src="node_modules/jstree/dist/jstree.min.js"></script>
<script src="node_modules/@tarekraafat/autocomplete.js/dist/autoComplete.js"></script>
<script src="node_modules/sweetalert2/dist/sweetalert2.min.js"></script>
<script src="node_modules/bootstrap-select/dist/js/bootstrap-select.min.js"></script>
<script src="https://jsuites.net/v4/jsuites.js"></script>
<script src="https://bossanova.uk/jspreadsheet/v4/jexcel.js"></script>
<script type="module">
if (isElectron) await import("./dist/index.js") // Load packaged frontend for Electron
else await import("./src/index.js") // Load dev frontend (if not in Electron context)
</script>
<script src="./assets/lotties.js" type="text/javascript"></script>
</body>
</html>