-
Notifications
You must be signed in to change notification settings - Fork 0
/
logical.html
129 lines (101 loc) · 3.85 KB
/
logical.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
---
# jekyll header
level: 2
active: profiles
---
{% include header.html %}
{% include container-start.html %}
<!-- ============BreadCrumb=============== -->
{% include breadcrumbs.html %}
<!-- ============CONTENT CONTENT=============== -->
<ul class="nav nav-tabs">
<li class="active"><a href="#">Content</a></li>
<li><a href="{{[type]}}-{{[id]}}-definitions.html">Detailed Descriptions</a></li>
<li><a href="{{[type]}}-{{[id]}}-mappings.html">Mappings</a></li>
<li><a href="{{[type]}}-{{[id]}}.xml.html">XML</a></li>
<li><a href="{{[type]}}-{{[id]}}.json.html">JSON</a></li>
<li><a href="{{[type]}}-{{[id]}}.ttl.html">Turtle</a></li>
</ul>
<h3><span class="sectioncount">SD.{{ site.data.structuredefinitions.{{[id]}}.index | plus: 1 }}<a name="SD.{{ site.data.structuredefinitions.{{[id]}}.index | plus: 1 }}"> </a></span>{{[type]}}-{{[id]}}<a title="link to here" class="self-link" href="{{[type]}}-{{[id]}}.html#SD.{{ site.data.structuredefinitions.{{[id]}}.index | plus: 1 }}"><img src="target.png"/></a></h3>
<!-- introductiontext here-->
<a name="introduction"> </a>
{% capture my-include %}{% include {{[id]}}-intro.md %}{% endcapture %}{{ my-include | markdownify }}
<!-- example here
<a name="example"> </a>-->
<!--
<h5>Example: <a href="daf-{{page.code}}-{{page.example}}.html">{{page.tcode}} Example: {{page.example}}</a></h5>
-->
<!-- try build generated templates
<h5>Example: <a href="{{[title]}}.example.html">{{[title]}} Example</a></h5> -->
<!-- <p> example here </p> -->
<a name="logical"> </a>
<h4><span class="sectioncount">SD.{{ site.data.structuredefinitions.{{[id]}}.index | plus: 1 }}.1</span>
Formal View of Logical Model
<a title="link to here" class="self-link" href="{{[type]}}-{{[id]}}.html#logical"><img src="target.png"/></a>
</h4>
<!-- uri -->
{% include {{[type]}}-{{[id]}}-header.xhtml %}
<!-- uri -->
<p>
<a href="{{site.data.fhir.path}}profiling.html#representation">Description of Logical Models and how the XML and JSON presentations work</a>.
</p>
<div id="tabs">
<ul>
<li><a href="#tabs-summ">Text Summary</a></li>
<!-- <li><a href="#tabs-diff">Differential Table</a></li> -->
<li><a href="#tabs-snap">Snapshot Table</a></li>
<!--
<li><a href="#tabs-xml">XML Template</a></li>
<li><a href="#tabs-json">JSON Template</a></li>
<li><a href="#tabs-all">All</a></li> -->
</ul>
<div id="tabs-summ">
<div id="tbl-summ">
<div id="tbl-diff-inner">
<a name="summary"> </a>
<!--{% include {{[type]}}-{{[id]}}-summary.xhtml %}-->
{% capture my-include %}{% include {{[id]}}-summary.md %}{% endcapture %}{{ my-include | markdownify }}
</div>
</div>
</div>
<div id="tabs-snap">
<div id="tbl-snap">
<div id="tbl-snap-inner">
{% include {{[type]}}-{{[id]}}-snapshot.xhtml %}
</div>
</div>
</div>
</div>
</div>
<a name="downloads"> </a>
<p>Downloads: Table: <a href="{{[id]}}.csv" download>CSV File</a>, StructureDefinition: (<a href="{{[type]}}-{{[id]}}.xml" download>XML</a>, <a href="{{[type]}}-{{[id]}}.json" download>JSON</a>), Schema: <a href="{{[id]}}.sch" download>XML Schematron</a></p>
<p> </p>
<!-- ==============END CONTENT END CONTENT=================== -->
{% include container-end.html %}
<!--
<script src="jquery.js"> </script>
<script src="jquery-ui.min.js"> </script>
-->
<script>
try {
var currentTabIndex = sessionStorage.getItem('fhir-resource-tab-index');
}
catch(exception){
}
if (!currentTabIndex)
currentTabIndex = '0';
$( '#tabs' ).tabs({
active: currentTabIndex,
activate: function( event, ui ) {
var active = $('.selector').tabs('option', 'active');
currentTabIndex = ui.newTab.index();
document.activeElement.blur();
try {
sessionStorage.setItem('fhir-resource-tab-index', currentTabIndex);
}
catch(exception){
}
}
});
</script>
{% include footer.html %}