-
Notifications
You must be signed in to change notification settings - Fork 0
/
example01.html
72 lines (72 loc) · 2.52 KB
/
example01.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Name of the ontology</title>
<script type="text/javascript" src="https://www.w3.org/Tools/respec/respec-w3c-common" class="remove"></script>
<script class="remove">
var respecConfig = {
specStatus: 'unofficial',
subtitle: 'Some ontology',
shortName: 'ontology',
publishDate: '2019-07-08',
editors: [
{
name: 'Example'
}
],
};
</script>
</head>
<body>
<section id="abstract">
<p>Abstract</p>
</section>
<section id="sotd"></section>
<section class="informative">
<h2>Specification</h2>
{{#each classes}}
<section>
<h3>Class: {{titleize (humanize label)}}</h3>
<table class="definition">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
{{#each elements}}
<tr>
<td class="prop"><a href="{{labelUri}}">{{titleize (humanize label)}}</a>{{#if language}} ({{language}}){{/if}}</td>
<td>{{value}}</td>
</tr>
{{/each}}
</tbody>
</table>
{{#each properties}}
<section>
<h4>{{titleize (humanize label)}}</h4>
<table class="definition">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
{{#each elements}}
<tr>
<td class="prop"><a href="{{labelUri}}">{{titleize (humanize label)}}</a>{{#if language}} ({{language}}){{/if}}</td>
<td>{{value}}</td>
</tr>
{{/each}}
</tbody>
</table>
</section>
{{/each}}
</section>
{{/each}}
</section>
</body>
</html>