forked from landonf/objectdoc
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
57 lines (51 loc) · 1.12 KB
/
index.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
<html>
<head>
<title>{{title}}</title>
<link rel="stylesheet" href="css/docset.css" type="text/css" />
</head>
<body>
<article id="contents">
<h1>{{title}}</h1>
{{#classes.count}}
<div class="index_column">
<ol>
<div class="collection_header">Class References</div>
{{#classes}}
<li><a href="Classes/{{name}}.html">{{name}}</a></li>
{{/classes}}
</ol>
</div>
{{/classes.count}}
{{#protocols.count}}
<div class="index_column">
<ol>
<div class="collection_header">Protocol References</div>
{{#protocols}}
<li><a href="Protocols/{{name}}.html">{{name}}</a></li>
{{/protocols}}
</ol>
</div>
{{/protocols.count}}
{{#includeOtherReferences}}
<div class="index_column">
<ol>
<div class="collection_header">Other References</div>
{{#constants.count}}
<li><a href="Misc/Constants.html">{{frameworkName}} Constants</a></li>
{{/constants.count}}
{{#functions.count}}
<li><a href="Misc/Functions.html">{{frameworkName}} Functions</a></li>
{{/functions.count}}
</ol>
</div>
{{/includeOtherReferences}}
<p class="clear"></p>
<div class="footer clear">
<hr>
<div align="center">
Generated on {{generatedDate}}
</div>
</div>
</article>
</body>
</html>