-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (96 loc) · 3.78 KB
/
index.html
File metadata and controls
111 lines (96 loc) · 3.78 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Pages for training exercises</title>
<link rel="icon" href="static/styles/common/favicon.ico" />
<script src="static/styles/common/jquery/jquery.min.js"></script>
<script src="static/styles/common/bootstrap/bootstrap.min.js"></script>
<link rel="stylesheet" href="static/styles/common/main.min.css" />
<link rel="stylesheet" href="static/styles/common/bootstrap/bootstrap.min.css" />
<link rel="stylesheet" href="static/styles/common/rendering/rendering.min.css" />
<script src="static/styles/common/rendering/stu3TreeTable.min.js"></script>
<script src="static/styles/common/rendering/baseTreetable.min.js"></script>
<link rel="stylesheet" href="static/styles/twolevelmenu/style.css?v=1da42fd98e2a000" />
</head>
<body>
<div id="ig-viewer">
<div class="ig-view-content">
<div id="ig-view-twolevelmenu">
<div class="header" role="banner" aria-label="Header">
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">
Training exercises
</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
Select <span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li>
<a href="retrieve.html">
Retrieve a Patient
</a>
</li>
<li>
<a href="create.html">
Create a Patient
</a>
</li>
<li>
<a href="obs.html">
Add an Observation
</a>
</li>
<li>
<a href="search.html">
Search for Patients
</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
</div>
<div class="content container" role="main" aria-label="Main content">
<div class="row">
<div class="col-md-24">
<div id="preview-content">
<p>This is the start of the exercise pages for Mirjam's training course</p>
<p>Click on any of the pages to get to an exercise:</p>
<p>
<ul>
<li><a href="retrieve.html">Retrieve a Patient</a></li>
<li><a href="create.html">Create a Patient</a></li>
<li><a href="obs.html">Add an Observation</a></li>
<li><a href="search.html">Search for Patients</a></li>
</ul>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="ig-view-footer" role="contentinfo" aria-label="Footer">
<div class="container">
<div class="row">
</div>
</div>
</div>
</div>
</body>
</html>