OLD | NEW |
(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> |
OLD | NEW |