forked from aehrc/fhir-ts-exemplars
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
65 lines (62 loc) · 4.42 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
<html lang="en">
<head>
<title>HL7 FHIR Terminology Service Exemplars</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<style>
iframe {
display:block;
width:100%;
height:calc(100% - 80px);
border:none;
}
</style>
</head>
<body>
<div class="container-fluid">
<h1 class="display-2 text-center">HL7 FHIR<sup>®</sup> Terminology Service Exemplars</h1>
<div class="row" style="border-top:solid 1px grey;">
<div class="col-sm-4 col-md-3 col-lg-2 col-xl-2 px-0" style="border-right:solid 1px grey; height:calc(100% - 80px);">
<div class="list-group">
<div class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">
<a href="exemplar1/" target="frame">Using the FHIR $validate-code operation</a>
<a class="badge badge-secondary badge-pill" href="https://embed.plnkr.co/IcVwwDWidwIS69t7Ues7/" target="_blank">plnkr↗</a>
</div>
<div class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">
<a href="exemplar2/" target="frame">A search box with type-ahead style functionality using the FHIR ValueSet $expand operation</a>
<a class="badge badge-secondary badge-pill" href="https://embed.plnkr.co/ltBg7eoZypwGvDzhKu0Q/" target="_blank">plnkr↗</a>
</div>
<div class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">
<a href="exemplar3/" target="frame">A drop box implemented using the FHIR ValueSet $expand operation</a>
<a class="badge badge-secondary badge-pill" href="https://embed.plnkr.co/oELW6BR7rN2vXNH3Yp4F/" target="_blank">plnkr↗</a>
</div>
<div class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">
<a href="exemplar4/" target="frame">Using ECL expressions with FHIR ValueSet $expand operation</a>
<a class="badge badge-secondary badge-pill" href="https://embed.plnkr.co/lARptudQI3jIsFjb7dbN/" target="_blank">plnkr↗</a>
</div>
<div class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">
<a href="exemplar5/" target="frame">The FHIR $translate operation</a>
<a class="badge badge-secondary badge-pill" href="https://embed.plnkr.co/3m5QGm/" target="_blank">plnkr↗</a>
</div>
<div class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">
<a href="https://documenter.getpostman.com/view/145584/S11PpbUK" target="_blank">Batching of FHIR operations↗</a>
<a class="badge badge-secondary badge-pill" href="https://app.getpostman.com/run-collection/6c85a0250c44c5a71527" target="_blank">Postman↗<ximg src="https://run.pstmn.io/button.svg" alt="Run in Postman"></a>
</div>
<div class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">
<a href="exemplar7/" target="frame">A UI that ensures users have performed a relevant code search</a>
<a class="badge badge-secondary badge-pill" href="https://embed.plnkr.co/hcIcSFbbKnN7DFz53AMq/" target="_blank">plnkr↗</a>
</div>
</div>
</div>
<div class="col">
<iframe name="frame" src="intro.html" allowpaymentrequest="false">
</iframe>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>