forked from HL7/davinci-pdex-plan-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex.html
51 lines (43 loc) · 1.6 KB
/
ex.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
---
# 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>
<li><b>{{[title]}} Example</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">Narrative</a></li>
{% endif %}{% unless name contains "xml" or name contains "json" or name contains "ttl" %}
<li class="active"><a href="#">Narrative</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>Example: {{[id]}}</h2>
{% include {{[type]}}-{{[name]}}.xhtml %}
<!-- ==============END CONTENT END CONTENT=================== -->
{% include container-end.html %}
{% include footer.html %}