forked from meteor/meteor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.html
More file actions
84 lines (76 loc) · 2.68 KB
/
layout.html
File metadata and controls
84 lines (76 loc) · 2.68 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
<head>
<title>Documentation - Meteor</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="Description"
content="Meteor is an open-source JavaScript platform for building top-quality web apps in a fraction of the time, whether you're an expert developer or just getting started."/>
<link rel="icon" href="/favicon.png" type="image/png" />
<!-- Google Tag Manager -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-M2CMWR"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-M2CMWR');</script>
<!-- End Google Tag Manager -->
<!-- Start of Async HubSpot Analytics Code -->
<script type="text/javascript">
(function(d,s,i,r) {
if (d.getElementById(i)){return;}
var n=d.createElement(s),e=d.getElementsByTagName(s)[0];
n.id=i;n.src='//js.hs-analytics.net/analytics/'+(Math.ceil(new Date()/r)*r)+'/520701.js';
e.parentNode.insertBefore(n, e);
})(document,"script","hs-analytics",300000);
</script>
<!-- End of Async HubSpot Analytics Code -->
</head>
<body>
<div class="body {{openSidebar}}">
{{> search}}
<div id="nav">
{{> sidebar}}
</div>
<div class="overlay close-sidebar"></div>
{{> topBar}}
<div class="main-content">
<div id="main">
<div><div id="top"></div></div>
<div class="{{layoutHidden 'full'}}">
{{> fullApiContent}}
</div>
<div class="{{layoutHidden 'basic'}}">
{{> basicContent}}
</div>
</div>
</div>
</div>
</body>
<template name="sidebar">
<div id="nav-inner">
<h1>
<a href="{{topLink}}">
<img src="/logo.png" class="logo" alt="Meteor" />
<div>{{release}} Docs</div>
</a>
</h1>
{{> basicOrFullSelect}}
{{> tableOfContents}}
{{> basicTableOfContents}}
</div>
</template>
<template name="topBar">
<div class="top-bar">
<div class="hamburger-menu-target open-sidebar">
<div class="hamburger-menu"></div>
</div>
<h1>
<img src="/logo.png" class="logo" alt="Meteor" /> {{release}} Docs
</h1>
</div>
</template>
<template name="basicOrFullSelect">
<select class="basic-or-full">
<option value="basic" selected="{{isBasic}}">Basic Docs</option>
<option value="full" selected="{{isFull}}">Full API</option>
</select>
</template>