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

Unified 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, 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/templates/private/relatedpages_items.html
diff --git a/chrome/common/extensions/docs/templates/private/relatedpages_items.html b/chrome/common/extensions/docs/templates/private/relatedpages_items.html
index a9a7c1345a4fee674487995dd59f533011dd9275..6181e56ef937c0e99df3b25c770775bc2714845b 100644
--- a/chrome/common/extensions/docs/templates/private/relatedpages_items.html
+++ b/chrome/common/extensions/docs/templates/private/relatedpages_items.html
@@ -1,6 +1,32 @@
-<section class="related">
-{{+partials.relatedpages_title items:items /}}
+<section class="site-related">
<ol class="toc">
- {{+partials.relatedpages_item items:items /}}
+{{#l0:items}}
+ <li class="toplevel">
+ <span {{+partials.hidden_if_not_interesting item:l0/}}>{{l0.title}}</span>
+ <ol class="toc">
+ {{#l1:l0.items}}
+ <li {{+partials.hidden_if_not_interesting item:l1/}}>
+ {{l1.title}}
+ <ol class="toc">
+ {{?l1.items}}{{#l2:l1.items}}
+ <li {{+partials.hidden_if_not_interesting item:l2/}}>
+ {{?l2.href}}<a href="{{l2.href}}">{{/l2.href}}
+ {{l2.title}}
+ {{?l2.href}}</a>{{/l2.href}}
+ <ol class="toc">
+ {{?l2.items}}{{#l3:l2.items}}
+ <li {{+partials.hidden_if_not_interesting item:l3/}}>
+ <a href="{{l3.href}}">{{l3.title}}</a>
+ </li>
+ {{/l2.items}}{{/l2.items}}
+ </ol>
+ </li>
+ {{/l1.items}}{{/l1.items}}
+ </ol>
+ </li>
+ {{/l0.items}}
+ </ol>
+ </li>
+ {{/items}}
</ol>
</section>

Powered by Google App Engine
This is Rietveld 408576698