forked from googleapis/google-cloud-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubpage.html
More file actions
98 lines (93 loc) · 3.21 KB
/
subpage.html
File metadata and controls
98 lines (93 loc) · 3.21 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<article class="main lang-page" role="main">
<header class="page-header fixed" role="banner">
<h1 class="logo">
<a href="." title="Home">
<img src="site/img/logo.svg" alt="Google Cloud Platform">
<span class="gcloud">gcloud</span>
</a>
</h1>
<nav class="main-nav" ng-class="{ open: showNavDropdown }">
<div class="nav-current" ng-click="showNavDropdown = !showNavDropdown">Node.js</div>
<ul class="menu">
<li>
<a href="#" title="Node.js docs page">
<img src="site/img/icon-lang-nodejs-white.svg" alt="Node.js icon" class="menu-icon">
Node.js
</a>
</li>
<li>
<a href="https://googlecloudplatform.github.io/gcloud-python" title="Python docs page">
<img src="site/img/icon-lang-python.svg" alt="Python icon" class="menu-icon">
Python
</a>
</li>
</ul>
</nav>
</header>
<header ng-if="headerTemplateUrl" ng-include="headerTemplateUrl"></header>
<header ng-if="!headerTemplateUrl" header title="{{title}}"></header>
<section class="content" ng-transclude></section>
<nav class="side-nav">
<ul class="page-sections">
<li ng-repeat="page in links">
<a
ng-class="{ current: isActiveUrl(page.url) }"
ng-href="{{page.url}}">
{{page.title}}
</a>
<ul class="sub-sections" ng-if="page.pages">
<li ng-repeat="innerPage in page.pages">
<a
ng-class="{ current: isActiveUrl(page.url + innerPage.url) }"
ng-href="{{page.url + innerPage.url}}">
{{innerPage.title}}
</a>
</li>
</ul>
</li>
</ul>
<ul class="page-sections external-links">
<li>
<a href="#/authorization" ng-class="{ current: isActiveUrl('/authorization') }" title="Authorization">
Authorization
</a>
</li>
<li>
<a href="#/faq" ng-class="{ current: isActiveUrl('/faq') }" title="Frequently Asked Questions">
FAQ
</a>
</li>
<li>
<a href="#/troubleshooting" ng-class="{ current: isActiveUrl('/troubleshooting') }" title="Troubleshooting">
Troubleshooting
</a>
</li>
</ul>
<ul class="external-links">
<li>
<a href="https://github.com/GoogleCloudPlatform/gcloud-node" title="gcloud-node on Github">
<img src="site/img/icon-link-github.svg" alt="GitHub icon" />
GitHub
</a>
</li>
<li>
<a href="https://github.com/GoogleCloudPlatform/gcloud-node/issues" title="gcloud-node issues on Github">
<img src="site/img/icon-link-github.svg" alt="GitHub icon" />
Issues
</a>
</li>
<li>
<a href="http://stackoverflow.com/questions/tagged/gcloud-node" title="gcloud-node on StackOverflow">
<img src="site/img/icon-link-stackoverflow.svg" alt="StackOverflow icon" />
StackOverflow
</a>
</li>
<li>
<a href="http://npmjs.org/package/gcloud" title="gcloud-node on npm">
<img src="site/img/icon-link-package-manager.svg" alt="npm icon" />
npm
</a>
</li>
</ul>
</nav>
</article>