forked from ebsco/backbone.validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docco.jst
67 lines (65 loc) · 2.34 KB
/
docco.jst
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
<!DOCTYPE html>
<html>
<head>
<title><%= title %></title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, target-densitydpi=160dpi, initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">
<link rel="stylesheet" media="all" href="docco.css" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-12325477-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="container">
<div id="background"></div>
<% if (sources.length > 1) { %>
<ul id="jump_to">
<li>
<a class="large" href="javascript:void(0);">Jump To …</a>
<a class="small" href="javascript:void(0);">+</a>
<div id="jump_wrapper">
<div id="jump_page">
<% for (var i=0, l=sources.length; i<l; i++) { %>
<% var source = sources[i]; %>
<a class="source" href="<%= path.basename(destination(source)) %>">
<%= path.basename(source) %>
</a>
<% } %>
</div>
</li>
</ul>
<% } %>
<ul class="sections">
<% if (!hasTitle) { %>
<li id="title">
<div class="annotation">
<h1><%= title %></h1>
</div>
</li>
<% } %>
<% for (var i=0, l=sections.length; i<l; i++) { %>
<% var section = sections[i]; %>
<li id="section-<%= i + 1 %>">
<div class="annotation">
<% heading = section.docsHtml.match(/^\s*<(h\d)>/) %>
<div class="pilwrap <%= heading ? 'for-' + heading[1] : '' %>">
<a class="pilcrow" href="#section-<%= i + 1 %>">¶</a>
</div>
<%= section.docsHtml %>
</div>
<% if (section.codeText.replace(/\s/gm, '') != '') { %>
<div class="content"><%= section.codeHtml %></div>
<% } %>
</li>
<% } %>
</ul>
</div>
</body>
</html>