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

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

Issue 148663007: Updated DCC navigation Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 3 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 <section class="related"> 1 <section class="site-related">
2 {{+partials.relatedpages_title items:items /}}
3 <ol class="toc"> 2 <ol class="toc">
4 {{+partials.relatedpages_item items:items /}} 3 {{#l0:items}}
4 <li class="toplevel">
5 <span {{+partials.hidden_if_not_interesting item:l0/}}>{{l0.title}}</span>
6 <ol class="toc">
7 {{#l1:l0.items}}
8 <li {{+partials.hidden_if_not_interesting item:l1/}}>
9 » {{l1.title}}
10 <ol class="toc">
11 {{?l1.items}}{{#l2:l1.items}}
12 <li {{+partials.hidden_if_not_interesting item:l2/}}>
13 {{?l2.href}}<a href="{{l2.href}}">{{/l2.href}}
14 {{l2.title}}
15 {{?l2.href}}</a>{{/l2.href}}
16 <ol class="toc">
17 {{?l2.items}}{{#l3:l2.items}}
18 <li {{+partials.hidden_if_not_interesting item:l3/}}>
19 » » <a href="{{l3.href}}">{{l3.title}}</a>
20 </li>
21 {{/l2.items}}{{/l2.items}}
22 </ol>
23 </li>
24 {{/l1.items}}{{/l1.items}}
25 </ol>
26 </li>
27 {{/l0.items}}
28 </ol>
29 </li>
30 {{/items}}
5 </ol> 31 </ol>
6 </section> 32 </section>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698