-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathevidence.html
68 lines (68 loc) · 2.46 KB
/
evidence.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
---
layout: default
title: evid
---
<a id="top"></a>
<section id="evid">
<div class="container section-heading">
<div class="row">
<div class="col-xs-12">
<h1 class="text-center">The Evidence</h1>
<h2 class="text-center">Interoperability's Impact within the Health Space</h2>
<p style="text-align: left;"> The approach of the Standard Health Record (SHR) is to standardize the health record and health data itself, rather than focusing on exchange standards. When the health record and data is standardized, exchange and aggregation of patient information will become trivial (as in every other industry that has gone standard and digital). Below are articles, papers and thinkpieces from the health community that demonstrate the different ways SHR-enabled interoperability will impact the health space.</p>
</div>
</div>
</div>
<div class="container section-content">
<div class="row">
<div class="col-sm-4">
<div id="side_nav" class="side-nav" data-spy="affix">
<h2 class="side-nav-title">Impact Type</h2>
<ul class="nav evid-nav" id="evid_nav">
{% assign sorted_evid = site.evid_types | sort: "num" %}
{% for type in sorted_evid %}
<li><a href="#evid{{type.num}}">{{type.title}}</a></li>
{% endfor %}
</ul>
</div>
</div>
<div class="col-sm-8">
<hr class="hidden-md-up">
<ul class="evids">
{% for type in sorted_evid %}
<li id="evid{{type.num}}">
<p class="title">
{{type.title}}
</p>
<p>
"{{type.quote}}"<sup>{{type.num}}</sup>
</p>
<ul>
{% for link in type.links %}
<li class="evid-link">
<p class="citation">
{% if link.num == 1 %}<sup>{{type.num}}</sup>{% endif %}
<a href="{{ link.href }}">{{link.title}}</a> {{link.source}}, {{link.year}}.
</p>
</li>
{% endfor %}
</ul>
<a href="#top" class="back-to-top" onclick="updateActive">Back to top</a>
{% endfor %}
</ul>
</div>
</div>
</div>
</section>
<script>
$(document).ready(function() {
$('#side_nav').affix({
offset: {
top: 330,
bottom: function () {
return ($('footer').outerHeight(true))
}
}
})
});
</script>