Chromium Code Reviews| OLD | NEW |
|---|---|
| 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/samples.css" rel="stylesheet" type="text/css"> | 5 <link href="{{static}}/css/samples.css" rel="stylesheet" type="text/css"> |
| 6 </head> | 6 </head> |
| 7 <body> | 7 <body> |
| 8 {{+partials.header_body}} | 8 {{+partials.header_body}} |
| 9 <div id="gc-container"> | 9 <div id="gc-container"> |
| 10 {{+partials.sidenav}} | 10 {{+partials.sidenav}} |
| 11 <div id="gc-pagecontent"> | 11 <div id="gc-pagecontent"> |
| 12 <h1 class="page_title">Samples</h1> | 12 <h1 class="page_title">Apps Samples</h1> |
|
not at google - send to devlin
2012/07/30 11:24:05
Apps Samples -> Sample Apps
cduvall
2012/08/02 01:14:53
Done.
| |
| 13 <div id="controls"> | 13 <div id="controls"> |
| 14 <table class="controlbox"> | 14 <table class="controlbox"> |
| 15 <tr> | 15 <tr> |
| 16 <td class="label">Filter by keyword:</td> | 16 <td class="label">Filter by keyword:</td> |
| 17 <td><input autofocus type="search" id="search_input" placeholder=" Type to search"></td> | 17 <td><input autofocus type="search" id="search_input" placeholder=" Type to search"></td> |
| 18 </tr> | 18 </tr> |
| 19 <tr> | 19 <tr> |
| 20 <td class="label">Filter by API:</td> | 20 <td class="label">Filter by API:</td> |
| 21 <td> | 21 <td> |
| 22 <div id="api_filter_items"> | 22 <div id="api_filter_items"> |
| 23 {{#api_list.chrome}} | 23 {{#api_list.chrome}} |
| 24 <span><a href="javascript:void(0)">{{name}}</a>{{^last}} | { {/}}</span> | 24 <span><a href="javascript:void(0)">{{name}}</a>{{^last}} | { {/}}</span> |
| 25 {{/}} | 25 {{/}} |
| 26 </div> | 26 </div> |
| 27 </td> | 27 </td> |
| 28 </tr> | 28 </tr> |
| 29 </table> | 29 </table> |
| 30 </div> | 30 </div> |
| 31 {{#samples.samples}} | 31 {{#samples.apps}} |
| 32 <div class="sample" tags="{{#api_calls}}{{name}} {{/}}"> | 32 <div class="sample" tags="{{#api_calls}}{{name}} {{/}}"> |
| 33 <img class="icon" src="{{icon}}"> | 33 <img class="icon" src="{{icon}}"> |
| 34 <h2><a href="{{path}}.zip">{{name}}</a></h2> | 34 <h2><a href="{{github_path}}">{{name}}</a></h2> |
| 35 {{description}} | 35 {{description}} |
| 36 <div> | 36 <div> |
| 37 <span class="label">Calls:</span> | 37 <span class="label">Calls:</span> |
| 38 <ul> | 38 <ul> |
| 39 {{#api_calls}} | 39 {{#api_calls}} |
| 40 <li><code><a href="{{link}}">{{name}}</a></code></li> | 40 <li><code><a href="{{link}}">{{name}}</a></code></li> |
| 41 {{/}} | 41 {{/}} |
| 42 </ul> | 42 </ul> |
| 43 </div> | 43 </div> |
| 44 <div> | 44 <div> |
| 45 <span class="label">Source Files:</span> | 45 <span class="label">Source Files:</span> |
| 46 <ul> | 46 <ul> |
| 47 {{#files}} | 47 {{#files}} |
| 48 <li><code><a href="{{path}}/{{@}}">{{@}}</a></code></li> | 48 <li><code><a href="{{github_path}}/{{@}}">{{@}}</a></code></li> |
| 49 {{/}} | 49 {{/}} |
| 50 </ul> | 50 </ul> |
| 51 </div> | 51 </div> |
| 52 </div> | 52 </div> |
| 53 {{/samples.samples}} | 53 {{/samples.apps}} |
| 54 </div> | 54 </div> |
| 55 </div> | 55 </div> |
| 56 </body> | 56 </body> |
| 57 {{+partials.footer}} | 57 {{+partials.footer}} |
| 58 <script src="{{static}}/js/samples.js" type="text/javascript"></script> | 58 <script src="{{static}}/js/samples.js" type="text/javascript"></script> |
| 59 </html> | 59 </html> |
| OLD | NEW |