Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: native_client_sdk/src/examples/resources/index.html.template

Issue 23919004: [NaCl SDK] Create a resources/ directory and move files to it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: move httpd.cmd too Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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>
OLDNEW
« no previous file with comments | « native_client_sdk/src/examples/resources/index.js ('k') | native_client_sdk/src/examples/resources/manifest.json.template » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698