li.tmpl.partial 955 B

123456789101112131415161718192021222324252627282930
  1. {{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}}
  2. <ul class="nav level{{level}}">
  3. {{#items}}
  4. {{^dropdown}}
  5. <li>
  6. {{^leaf}}
  7. <span class="expand-stub"></span>
  8. {{/leaf}}
  9. {{#topicHref}}
  10. <a href="{{topicHref}}" name="{{tocHref}}" title="{{name}}">{{name}}</a>
  11. {{/topicHref}}
  12. {{^topicHref}}
  13. <a>{{{name}}}</a>
  14. {{/topicHref}}
  15. {{^leaf}}
  16. {{>partials/li}}
  17. {{/leaf}}
  18. </li>
  19. {{/dropdown}}
  20. {{#dropdown}}
  21. <li class="dropdown">
  22. <a class="dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">{{name}} <span class="caret"></span></a>
  23. <ul class="dropdown-menu level{{level}}">
  24. {{>partials/dd-li}}
  25. </ul>
  26. </li>
  27. {{/dropdown}}
  28. {{/items}}
  29. </ul>