-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtutorial.html
392 lines (382 loc) · 13.9 KB
/
tutorial.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="img/favicon.ico?v=2" />
<link
rel="mask-icon"
href="{{ base_path }}/img/favicon.ico?v=M44lzPylqQ"
color="#000000"
/>
<!-- This corresponds to a fontawesome kit but can be customized -->
<script
src="https://kit.fontawesome.com/48644805cd.js"
crossorigin="anonymous"
></script>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap"
rel="stylesheet"
/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous"
/>
<!-- Styles -->
<link rel="stylesheet" href="css/style.css?v=1.0.1" />
<link rel="stylesheet" href="css/style_documentation.css?v=1.0.1" />
<title>Vascular Model Repository</title>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-YVVR1546XJ"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-YVVR1546XJ");
</script>
</head>
<body>
<nav class="navbar sticky-top navbar-expand-lg navbar-custom">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">VMR</a>
<button
class="navbar-toggler ml-auto custom-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse justify-content-end"
id="navbarSupportedContent"
>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html"
>Home <span class="sr-only">(current)</span></a
>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
id="navbarDropdown"
role="button"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
>
Repository
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="dataset.html">Dataset</a>
<a class="dropdown-item" href="additionaldata.html"
>Additional data</a
>
<a class="dropdown-item" href="statistics.html">Statistics</a>
</div>
</li>
<li class="nav-item dropdown active">
<a
class="nav-link dropdown-toggle"
href="#"
id="navbarDropdown"
role="button"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
>
Support
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="documentation.html"
>Documentation</a
>
<a class="dropdown-item" href="tutorial.html">Tutorial</a>
<a class="dropdown-item" href="FAQs.html">FAQs</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="contributors.html"
>Contributors <span class="sr-only">(current)</span></a
>
</li>
<li class="nav-item">
<a class="nav-link" href="contacts.html">Contact us</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid main-content centerBox">
<h1 style="margin-bottom: 30px">Tutorial</h1>
<div class="row" id="model-gallery">
<div class="col-lg-6 col-12">
<a class="mainCat" href="gallerytutorial.html">Using the Gallery</a>
<a class="subCat" href="gallerytutorial.html#Helpful_tools"
>Helpful tools</a
>
<a class="subCat" href="gallerytutorial.html#Viewing_model_details"
>Viewing model details</a
>
<a
class="subCat"
href="gallerytutorial.html#Viewing_simulation_results"
>Viewing simulation results</a
>
<a class="subCat" href="gallerytutorial.html#Selecting_Models"
>Selecting models</a
>
<a class="mainCat" href="filtertutorial.html">Using the Filters</a>
<a class="subCat" href="filtertutorial.html#Opening_the_filter_menu"
>Opening the Menu</a
>
<a class="subCat" href="filtertutorial.html#About_the_filter_menu"
>About the filter menu</a
>
<a class="subsubCat" href="filtertutorial.html#The_Gallery_Header"
>The Gallery Header</a
>
<a class="subsubCat" href="filtertutorial.html#The_Error_Message"
>The Error Message</a
>
<a class="subsubCat" href="filtertutorial.html#The_Clear_All_Button"
>The Clear All Button</a
>
<a
class="subsubCat"
href="filtertutorial.html#The_Collapse_All_Button"
>The Collapse All Button</a
>
<a
class="subCat"
href="filtertutorial.html#Looking_at_the_different_categories"
>The Different Categories</a
>
<a class="subsubCat" href="filtertutorial.html#The_Search_Bar"
>The Search Bar</a
>
<a
class="subsubCat"
href="filtertutorial.html#The_Simulation_Results_Filter"
>The Simulation Results Filter</a
>
<a class="subsubCat" href="filtertutorial.html#The_Age_Filter"
>The Age Filter</a
>
<a class="subsubCat" href="filtertutorial.html#The_Drop-Down_Menus"
>The Drop-Down Menus</a
>
<a class="subsubCat" href="filtertutorial.html#The_Checkboxes"
>The Checkboxes</a
>
<a
class="subsubCat"
href="filtertutorial.html#The_Project_Must_Contain_Filter"
>The Project Must Contain Filter</a
>
</div>
<div class="col-lg-6 col-12">
<a class="mainCat" href="menututorial.html">Using the Menu Bar</a>
<a class="subCat" href="menututorial.html#Opening_the_Menu_Bar"
>Opening the Menu Bar</a
>
<a
class="subCat"
href="menututorial.html#The_Select_and_Deselect_All_Icon"
>The Select and Deselect All Icon</a
>
<a
class="subCat"
href="menututorial.html#The_View_Selected_Models_Icon"
>The View Selected Models Icon</a
>
<a class="subCat" href="menututorial.html#The_Download_All_Icon"
>The Download All Icon</a
>
<a class="subCat" href="menututorial.html#The_Share_Icon"
>The Share Icon</a
>
<a class="mainCat" href="sharingtutorial.html">Sharing Models</a>
<a class="subCat" href="sharingtutorial.html#Sharing_a_model"
>Sharing a model</a
>
<a
class="subsubCat"
href="sharingtutorial.html#How_to_get_the_Link_for_One_Model"
>How to get the link</a
>
<a
class="subsubCat"
href="sharingtutorial.html#Viewing_the_shared_model"
>Viewing the shared model</a
>
<a
class="subCat"
href="sharingtutorial.html#Sharing_a_simulation_result"
>Sharing a simulation result</a
>
<a
class="subsubCat"
href="sharingtutorial.html#How_to_get_the_Link_for_Sim_Results"
>How to get the link</a
>
<a
class="subsubCat"
href="sharingtutorial.html#Viewing_the_shared_result"
>Viewing the shared result</a
>
<a class="subCat" href="sharingtutorial.html#Sharing_multiple_models"
>Sharing multiple models</a
>
<a
class="subsubCat"
href="sharingtutorial.html#How_to_get_the_Link_for_Multiple_Model"
>How to get the link</a
>
<a
class="subsubCat"
href="sharingtutorial.html#Viewing_the_shared_models"
>Viewing the shared models</a
>
</div>
</div>
</div>
<section id="contact-section">
<div class="container">
<div class="row align-items-center">
<div class="col-md-4 col-12">
<div style="text-align: left">
<div class="contact-info">
<ul class="contact-address">
<li>
<i class="fa fa-map-marker fa-lg"></i> Clark Center
E1.3.<br /> 318
Campus Drive,<br />
Stanford, <br />
CA 94305-5428
</li>
<li><i class="fa fa-envelope"></i> [email protected]</li>
</ul>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="explore" style="text-align: left">
<h5>Explore</h5>
<div><a href="dataset.html">Dataset</a></div>
<div><a href="tutorial.html">Tutorial</a></div>
<div><a href="documentation.html">Documentation</a></div>
<div><a href="FAQs.html">FAQs</a></div>
<div><a href="contacts.html">Contact us</a></div>
</div>
</div>
<div class="col-md-4 col-12" style="text-align: center">
<div class="social-media">
<div>Follow SimVascular on social media</div>
<div class="container">
<div class="row">
<div class="col-4">
<div
href="#"
style="
display: flex;
justify-content: center;
font-size: 20px;
"
>
<a
href="https://www.facebook.com/groups/835227759855853"
target="_blank"
class="social-logo"
><i class="fa fa-facebook fa-lg"></i
></a>
</div>
</div>
<div class="col-4">
<div
href="#"
style="
display: flex;
justify-content: center;
font-size: 20px;
"
>
<a
href="https://twitter.com/simvascular"
target="_blank"
class="social-logo"
;
><i class="fa fa-twitter fa-lg"></i
></a>
</div>
</div>
<div class="col-4">
<div
href="#"
style="
display: flex;
justify-content: center;
font-size: 20px;
"
>
<a
href="https://www.youtube.com/channel/UCT61XgTRqpfb39Hyio9IqGQ"
target="_blank"
class="social-logo"
><i class="fa fa-youtube fa-lg"></i
></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"
></script>
<script src="js/jquery-2.1.1.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"
></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-csv/1.0.21/jquery.csv.min.js"></script>
<!-- <script src="js/jquery-2.1.1.js"></script> -->
<script src="js/jquery.mixitup.min.js"></script>
<script src="js/documentation.js?v=1.0.2"></script>
</body>
</html>