-
Notifications
You must be signed in to change notification settings - Fork 240
/
Copy pathprint-template.html
57 lines (53 loc) · 2.03 KB
/
print-template.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="Official ExtJS 4.0 API Documentation for {subtitle} from Sencha. Examples, guides, screencasts and comments on how to use {subtitle}." >
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="{canonical}" />
<!-- BEGIN CSS -->
<link rel="stylesheet" href="resources/css/docs-ext.css" type="text/css" />
<link rel="stylesheet" href="resources/css/viewport.css" type="text/css" />
<link rel="stylesheet" href="resources/codemirror/codemirror.css" type="text/css" />
<link rel="stylesheet" href="resources/prettify/prettify.css" type="text/css" />
<!-- END CSS -->
<link rel="stylesheet" href="{css_path}" type="text/css" />
<style type="text/css">
.description .short { display: none !important }
.description .long { display: block !important }
</style>
<title>{subtitle} - {title}</title>
</head>
<body style="background: #fff; min-width: 0;">
<div id="north-region" style="padding: 1px 0 11px 11px">
<div id="header-content">{header}</div>
</div>
<div id="center-container" class="class-overview" style="padding: 20px">
<div class="x-panel-body">
<article>
{body}
</article>
</div>
</div>
<script src="resources/prettify/prettify.js"></script>
<script>
(function(){
// Add .prettyprint class to all (pre > code) blocks
var els = document.body.getElementsByTagName("pre");
for (var i=0, len=els.length; i<len; i++) {
var pre = els[i];
if (pre.getElementsByTagName("code").length > 0) {
pre.className += " prettyprint";
}
}
prettyPrint();
})();
</script>
<script type="text/javascript">
(function(){
var protocol = (document.location.protocol === "https:") ? "https:" : "http:";
document.write("<link href='"+protocol+"//fonts.googleapis.com/css?family=Exo' rel='stylesheet' type='text/css' />");
})();
</script>
</body>
</html>