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

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

Issue 10689144: Extensions Docs Server: Samples zip files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: clean up and tests 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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 {{+partials.header_head}}
5 </head>
6 <body>
7 {{+partials.header_body}}
8 <div id="gc-container">
9 {{+partials.sidenav}}
10 <div id="gc-pagecontent">
11 <h1>Samples</h1>
12 {{#samples.samples}}
13 <h2><a href="{{path}}.zip">{{name}}</a></h2>
14 {{description}}
15 <div>
16 <strong>Calls:</strong>
17 <ul>
18 {{#api_calls}}
19 <li><code><a href="{{link}}">{{name}}</a></code></li>
20 {{/}}
21 </ul>
22 </div>
23 <div>
24 <strong>Source Files:</strong>
25 <ul>
26 {{#files}}
27 <li><code><a href="{{path}}/{{@}}">{{@}}</a></code></li>
28 {{/}}
29 </ul>
30 </div>
31 {{/samples.samples}}
32 </div>
33 </div>
34 </body>
35 {{+partials.footer}}
36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698