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

Side by Side Diff: chrome/common/extensions/docs/templates/private/404.html

Issue 12521030: Extension docs: Include sidenav in 404 pages (Closed) Base URL: https://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 9 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 {{+partials.header_head}} 4 {{+partials.header_head}}
5 <link href="{{static}}/css/index.css" rel="stylesheet" type="text/css"> 5 <title>404 Not Found - Google Chrome</title>
6 <title>404 Not Found - Google Chrome Extensions</title> 6 <base href="/{{branchInfo.current}}/{{platform}}s/">
not at google - send to devlin 2013/03/26 16:12:19 <base>? Can we avoid?
7 <style type="text/css">
8 #gc-sidebar.floating {
9 position: relative;
方觉(Fang Jue) 2013/03/26 13:52:11 This fixes problem with scrolling on 404 pages (wi
not at google - send to devlin 2013/03/26 16:12:19 What do you mean? I patched in this change and it
10 }
11 </style>
7 </head> 12 </head>
8 <body> 13 <body>
9 {{+partials.header_body title:extensions_title platform:extension}} 14 {{+partials.header_body}}
10 <div id="gc-container"> 15 <div id="gc-container">
16 {{+partials.sidenav items:sidenav_items}}
11 <div id="gc-pagecontent"> 17 <div id="gc-pagecontent">
12 <h1 class="page_title">404 - Not Found</h1> 18 <h1 class="page_title">404 - Not Found</h1>
not at google - send to devlin 2013/03/26 16:12:19 The 404 here has always irritated me. Let's just m
方觉(Fang Jue) 2013/03/27 00:43:46 Done.
13 <p>No API or URL found with that name.</p> 19 <p>No API or URL found with that name.</p>
14 </div> 20 </div>
15 </div> 21 </div>
16 </body> 22 </body>
23 <script>
24 window.bootstrap = {
25 branchInfo: {{*branchInfo}}
26 };
27 </script>
17 {{+partials.footer}} 28 {{+partials.footer}}
not at google - send to devlin 2013/03/26 16:12:19 I think if we make this an article (articles/404.h
方觉(Fang Jue) 2013/03/27 00:43:46 Done.
18 </html> 29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698