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

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

Issue 10825067: Extensions Docs Server: Apps samples page (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed templates Created 8 years, 4 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 {{- sidenav: the sidenav bar for either apps or extensions -}}
2 {{- filter_list: the list of APIs that show up in the filter box -}}
3 {{- samples_list: the list of samples shown on the page -}}
4 {{- footer: the footer for either apps or extensions -}}
5 <!DOCTYPE html>
6 <html>
7 <head>
8 {{+partials.header_head}}
9 <link href="{{static}}/css/samples.css" rel="stylesheet" type="text/css">
10 </head>
11 <body>
12 {{+partials.header_body}}
13 <div id="gc-container">
14 {{+sidenav}}
15 <div id="gc-pagecontent">
16 <h1 class="page_title">Sample {{title}}</h1>
17 <div id="controls">
18 <table class="controlbox">
19 <tr>
20 <td class="label">Filter by keyword:</td>
21 <td><input autofocus type="search" id="search_input" placeholder=" Type to search"></td>
22 </tr>
23 <tr>
24 <td class="label">Filter by API:</td>
25 <td>
26 <div id="api_filter_items">
27 {{#filter_list}}{{+partials.filter_item}}{{/}}
28 </div>
29 </td>
30 </tr>
31 </table>
32 </div>
33 {{#samples_list}}{{+partials.sample_item}}{{/}}
34 </div>
35 </div>
36 </body>
37 {{+footer}}
38 <script src="{{static}}/js/samples.js" type="text/javascript"></script>
39 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698