forked from HL7/davinci-pdex-plan-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
format.html
57 lines (49 loc) · 1.92 KB
/
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
---
# jekyll header
---
{% include header.html %}
<div id="segment-breadcrumb" class="segmnt">
<!-- segment-breadcrumb -->
<div class="container">
<!-- container -->
<ul class="breadcrumb">
<li title="home"><a href="index.html"><b>Home</b></a></li>
{% capture type %}{{[type]}}{% endcapture %}
{% if type == 'ValueSet' %}
<li title="value sets"><a href="valuesets.html"><b>Value Sets</b></a></li>
{% endif %}{% if type == 'CodeSystem' %}
<li title="code systems"><a href="codesystems.html"><b>Code Systems</b></a></li>
{% endif %}
<li><b>{{[title]}}</b></li>
</ul>
</div>
<!-- /container -->
</div>
<!-- /segment-breadcrumb -->
{% include container-start.html %}
<!-- ============CONTENT CONTENT=============== -->
{% capture "name" %}{{[name]}}{% endcapture %}
<ul class="nav nav-tabs">
{% if name contains "xml" or name contains "json" or name contains "ttl" %}
<li><a href="{{[type]}}-{{[id]}}.html">Content</a></li>
{% endif %}{% unless name contains "xml" or name contains "json" or name contains "ttl" %}
<li class="active"><a href="#">Content</a></li>
{% endunless %}{% if name contains "xml" %}
<li class="active"><a href="#">XML</a></li>
{% endif %}{% unless name contains "xml" %}
<li><a href="{{[type]}}-{{[id]}}.xml.html">XML</a></li>
{% endunless %}{% if name contains "json" %}
<li class="active"><a href="#">JSON</a></li>
{% endif %}{% unless name contains "json" %}
<li><a href="{{[type]}}-{{[id]}}.json.html">JSON</a></li>
{% endunless %}{% if name contains "ttl" %}
<li class="active"><a href="#">Turtle</a></li>
{% endif %}{% unless name contains "ttl" %}
<li><a href="{{[type]}}-{{[id]}}.ttl.html">Turtle</a></li>
{% endunless %}
</ul>
<h2>{{[title]}}</h2>
{% include {{[type]}}-{{[name]}}.xhtml %}
<!-- ==============END CONTENT END CONTENT=================== -->
{% include container-end.html %}
{% include footer.html %}