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

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

Issue 10804036: Extensions Docs Server: Internationalized samples (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: encodings Created 8 years, 5 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
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}}
(...skipping 10 matching lines...) Expand all
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 <div id="samples">
32 <div class="sample" tags="{{#api_calls}}{{name}} {{/}}"> 32 {{#samples.samples}}
33 <img class="icon" src="{{icon}}"> 33 <div class="sample" tags="{{#api_calls}}{{name}} {{/}}">
34 <h2><a href="{{path}}.zip">{{name}}</a></h2> 34 <img class="icon" src="{{icon}}">
35 {{description}} 35 <h2><a href="{{path}}.zip">{{name}}</a></h2>
36 <div> 36 {{description}}
37 <span class="label">Calls:</span> 37 <div>
38 <ul> 38 <span class="label">Calls:</span>
39 {{#api_calls}} 39 <ul>
40 <li><code><a href="{{link}}">{{name}}</a></code></li> 40 {{#api_calls}}
41 {{/}} 41 <li><code><a href="{{link}}">{{name}}</a></code></li>
42 </ul> 42 {{/}}
43 </ul>
44 </div>
45 <div>
46 <span class="label">Source Files:</span>
47 <ul>
48 {{#files}}
49 <li><code><a href="{{path}}/{{@}}">{{@}}</a></code></li>
50 {{/}}
51 </ul>
52 </div>
43 </div> 53 </div>
44 <div> 54 {{/samples.samples}}
45 <span class="label">Source Files:</span>
46 <ul>
47 {{#files}}
48 <li><code><a href="{{path}}/{{@}}">{{@}}</a></code></li>
49 {{/}}
50 </ul>
51 </div>
52 </div> 55 </div>
53 {{/samples.samples}}
54 </div> 56 </div>
55 </div> 57 </div>
56 </body> 58 </body>
57 {{+partials.footer}} 59 {{+partials.footer}}
58 <script src="{{static}}/js/samples.js" type="text/javascript"></script> 60 <script src="{{static}}/js/samples.js" type="text/javascript"></script>
59 </html> 61 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698