-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathinstance-template-format.html
66 lines (54 loc) · 2.41 KB
/
instance-template-format.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
---
# jekyll header
---
<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>{{ site.data.fhir.igName }}</title>
{% include header.html %}
<style type="text/css">
pre{
width: auto !important;
}
</style>
</head>
<body>
{% include navbar.html %}
<div id="segment-breadcrumb" class="segmnt">
<div class="container">
<ul class="breadcrumb">
<li title="{{ site.data.fhir.igName }}"><a href="index.html"><b>{{site.data.fhir.igName}}</b></a></li>
{% if page.title %}
<li><b>{{page.title}} Details</b></li>
{% else %}
<li><b>{{[id]}} Details</b></li>
{% endif %}
</ul>
</div>
</div>
{% include publish-box.html %}
<div id="segment-content" class="segment">
<div class="container">
<div class="row">
<div class="inner-wrapper">
<div class="col-12">
<ul class="nav nav-tabs">
<li class="{% if page.path == "{{[type]}}-{{[id]}}.html" %}active{% endif %}"><a href="{{[type]}}-{{[id]}}.html">Content</a></li>
{% if "{{[type]}}" == "StructureDefinition" %}
<li class="{% if page.path == "{{[type]}}-{{[id]}}-definitions.html" %}active{% endif %}"><a href="{{[type]}}-{{[id]}}-definitions.html">Detailed Descriptions</a></li>
<li class="{% if page.path == "{{[type]}}-{{[id]}}-mappings.html" %}active{% endif %}"><a href="{{[type]}}-{{[id]}}-mappings.html">Mappings</a></li>
<li class="{% if page.path == "{{[type]}}-{{[id]}}-examples.html" %}active{% endif %}"><a href="{{[type]}}-{{[id]}}-examples.html">Examples</a></li>
{% endif %}
<li class="{% if page.path == "{{[type]}}-{{[id]}}.xml.html" %}active{% endif %}"><a href="{{[type]}}-{{[id]}}.xml.html">XML</a></li>
<li class="{% if page.path == "{{[type]}}-{{[id]}}.json.html" %}active{% endif %}"><a href="{{[type]}}-{{[id]}}.json.html">JSON</a></li>
</ul>
<br/>
{% include {{[type]}}-{{[name]}}.xhtml %}
</div>
</div>
</div>
</div>
</div>
{% include footer.html %}
</body>
</html>