li.tmpl.partial 670 B

12345678910111213141516171819202122232425
  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. <li>
  5. {{^leaf}}
  6. <span class="expand-stub"></span>
  7. {{/leaf}}
  8. {{#topicHref}}
  9. {{#type}}
  10. <a href="{{topicHref}}" name="{{tocHref}}" title="{{name}}" class="xk-{{type}}">{{name}}</a>
  11. {{/type}}
  12. {{^type}}
  13. <a href="{{topicHref}}" name="{{tocHref}}" title="{{name}}">{{name}}</a>
  14. {{/type}}
  15. {{/topicHref}}
  16. {{^topicHref}}
  17. <a>{{{name}}}</a>
  18. {{/topicHref}}
  19. {{^leaf}}
  20. {{>partials/li}}
  21. {{/leaf}}
  22. </li>
  23. {{/items}}
  24. </ul>