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> |