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

Unified Diff: native_client_sdk/src/examples/resources/index.html.template

Issue 13488007: [NaCl SDK] Make the SDK examples buildable as a packaged app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix license headers Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: native_client_sdk/src/examples/resources/index.html.template
diff --git a/native_client_sdk/src/examples/resources/index.html.template b/native_client_sdk/src/examples/resources/index.html.template
new file mode 100644
index 0000000000000000000000000000000000000000..cc192e3be3097952bc291343467a29388c2f8e5e
--- /dev/null
+++ b/native_client_sdk/src/examples/resources/index.html.template
@@ -0,0 +1,43 @@
+<!--
+ 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 'Tools', 'API', 'Concepts':]]
+ <div class="nav-group-header">{{section}}</div>
+[[ for desc in section_map[section]:]]
+ <div class="nav-item" data-href="{{desc['NAME']}}/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>
« 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