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

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

Issue 61733018: Docserver: Update to the latest version of handlebar. Lots of re-syntaxifying. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments, rebase Created 7 years, 1 month 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 {{#sample}}
1 <div class="sample" tags="{{#api_calls}}chrome.{{name}} {{/}}"> 2 <div class="sample" tags="{{#api_calls}}chrome.{{name}} {{/}}">
2 <img class="icon" src="{{icon}}"> 3 <img class="icon" src="{{icon}}">
3 <h2 id="{{id}}"><a href="{{download_url}}">{{name}}</a></h2> 4 <h2 id="{{id}}"><a href="{{download_url}}">{{name}}</a></h2>
4 {{?description}} 5 {{?description description/}}
5 {{description}}
6 {{/description}}
7 <div> 6 <div>
8 <span class="label">Calls:</span> 7 <span class="label">Calls:</span>
9 <ul> 8 <ul>
10 {{#api_calls}} 9 {{#call:api_calls}}
11 <li><code><a href="{{link}}">{{name}}</a></code></li> 10 <li><code><a href="{{call.link}}">{{call.name}}</a></code></li>
12 {{/}} 11 {{/api_calls}}
13 </ul> 12 </ul>
14 </div> 13 </div>
15 <div> 14 <div>
16 <span class="label">Source Files:</span> 15 <span class="label">Source Files:</span>
17 <ul> 16 <ul>
18 {{#files}} 17 {{#f:files}}
19 <li><code><a href="{{url}}/{{@}}">{{@}}</a></code></li> 18 <li><code><a href="{{url}}/{{f}}">{{f}}</a></code></li>
20 {{/}} 19 {{/files}}
21 </ul> 20 </ul>
22 </div> 21 </div>
23 </div> 22 </div>
23 {{/sample}}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698