Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <html>
  2. <body class="introcontent">
  3. <div class="bgwrapper">
  4. <div id="content">
  5.  
  6. <h1>Learn algorithm!</h1>
  7. <!---->
  8. <!-- no bullets in ul tag -->
  9. <ul style="list-style-type:none" class="chapters">
  10. <li *ngFor="let item of IndexChap; let i = index">
  11.  
  12. <!-- path route -->
  13. <a routerLink="/tableofcontents/{{item.name}}"> <span class='chapters'> {{i+1}}</span>
  14. . <span> {{item.name}}</span>
  15. </a>
  16.  
  17.  
  18. <ul *ngFor="let subItem of item.subItems" [attr.id]='subItem.name'>
  19. <li>
  20. <section>
  21. <a [routerLink]="['/tableofcontents/',subItem.name]" [fragment]="subItem.name"> {{ subItem.name }}</a>
  22. <!--a [routerLink]="[tableofcontents]" [fragment]="subItem.name"> {{ subItem.name }}</a-->
  23. </section>
  24.  
  25. </li>
  26. </ul>
  27.  
  28. </li>
  29.  
  30. </ul>
  31. </div>
  32.  
  33. </div>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement