summaryrefslogtreecommitdiffstats
path: root/native_client_sdk/src/resources/index.html.template
blob: 207afdb6c54adcecf897edd0fe4b58c170debfd3 (plain)
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
<!--
  Copyright (c) 2013 The Chromium Authors. All rights reserved.
  Use of this source code is governed by a BSD-style license that can be
  found in the LICENSE file.
-->
<!DOCTYPE html>
<html>
<head>
  <title>Native Client SDK</title>
  <link href="index.css" rel="stylesheet" type="text/css">
  <script src="index.js"></script>
</head>
<body>
  <div class="main-column">
    <div class="header">
      Native Client SDK
      <div class="close-button"></div>
    </div>
    <div class="main">
      <div class="left-border"></div>
      <div class="nav-wrapper">
        <div class="nav">
[[for section in section_map:]]
          <div class="nav-group-header">{{section}}</div>
[[  for desc in section_map[section]:]]
[[    index_path = (desc['DEST'] + '/' + desc['NAME'])]]
[[    index_path = '/'.join(index_path.split('/')[1:])]]
          <div class="nav-item" data-href="{{index_path}}/index.html">
            <div class="nav-title">
              {{desc['TITLE']}}
            </div>
          </div>
[[]]
        </div>
      </div>
      <div class="iframe-wrapper">
        <iframe scrolling="no">
        </iframe>
      </div>
      <div class="right-border"></div>
    </div>
    <div class="footer"></div>
  </div>
</body>
</html>