- add sources.
[platform/framework/web/crosswalk.git] / src / native_client_sdk / src / resources / index.html.template
1 <!--
2   Copyright (c) 2013 The Chromium Authors. All rights reserved.
3   Use of this source code is governed by a BSD-style license that can be
4   found in the LICENSE file.
5 -->
6 <!DOCTYPE html>
7 <html>
8 <head>
9   <title>Native Client SDK</title>
10   <link href="index.css" rel="stylesheet" type="text/css">
11   <script src="index.js"></script>
12 </head>
13 <body>
14   <div class="main-column">
15     <div class="header">
16       Native Client SDK
17       <div class="close-button"></div>
18     </div>
19     <div class="main">
20       <div class="left-border"></div>
21       <div class="nav-wrapper">
22         <div class="nav">
23 [[for section in section_map:]]
24           <div class="nav-group-header">{{section}}</div>
25 [[  for desc in section_map[section]:]]
26 [[    index_path = (desc['DEST'] + '/' + desc['NAME'])]]
27 [[    index_path = '/'.join(index_path.split('/')[1:])]]
28           <div class="nav-item" data-href="{{index_path}}/index.html">
29             <div class="nav-title">
30               {{desc['TITLE']}}
31             </div>
32           </div>
33 [[]]
34         </div>
35       </div>
36       <div class="iframe-wrapper">
37         <iframe scrolling="no">
38         </iframe>
39       </div>
40       <div class="right-border"></div>
41     </div>
42     <div class="footer"></div>
43   </div>
44 </body>
45 </html>