sidebar.component.html 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. <aside class="sidebar ">
  2. <div class="scrollbar">
  3. <div ngbDropdown class="user">
  4. <div ngbDropdownToggle class="user__info" data-toggle="dropdown">
  5. <img class="user__img" src="assets/img/profile-pics/4.jpg" alt="">
  6. <div >
  7. <div class="user__name">
  8. <ng-container *ngIf="userInformation">
  9. <span>{{userInformation.firstname}}</span>
  10. <span class="ml-1">{{userInformation.lastname}}</span>
  11. </ng-container>
  12. </div>
  13. <div class="user__email">{{userInformation!.email}}</div>
  14. </div>
  15. </div>
  16. <div ngbDropdownMenu class="dropdown-menu dropdown-menu--invert">
  17. <a class="dropdown-item" href="">View Profile</a>
  18. <a class="dropdown-item" href="">Settings</a>
  19. <a class="dropdown-item" href="">Logout</a>
  20. </div>
  21. </div>
  22. <ul class="navigation">
  23. <li class="navigation"><a [routerLink]="RoutePath.SLASH"><i class="zwicon-home"></i> Home</a></li>
  24. <li ngbDropdown class="navigation__sub">
  25. <a ngbDropdownToggle href="#"><i class="zwicon-three-h"></i> Variants</a>
  26. <ul ngbDropdownMenu class="dropdown-menu">
  27. <li><a href="hidden-sidebar.html">Hidden Sidebar</a></li>
  28. <li><a href="boxed-layout.html">Boxed Layout</a></li>
  29. <li><a href="hidden-sidebar-boxed-layout.html">Boxed Layout with Hidden Sidebar</a></li>
  30. </ul>
  31. </li>
  32. <li>
  33. <a href="typography.html"><i class="zwicon-edit-square-feather"></i> Typography</a>
  34. </li>
  35. <li>
  36. <a href="widgets.html"><i class="zwicon-layout-4"></i> Widgets</a>
  37. </li>
  38. <li ngbDropdown class="navigation__sub">
  39. <a ngbDropdownToggle href="#"><i class="zwicon-layout-2"></i> Tables</a>
  40. <ul ngbDropdownMenu>
  41. <li>
  42. <a href="html-table.html">HTML Table</a>
  43. </li>
  44. <li>
  45. <a href="data-table.html">Data Table</a>
  46. </li>
  47. </ul>
  48. </li>
  49. <li class="navigation__sub">
  50. <a href=""><i class="zwicon-note"></i> Forms</a>
  51. <ul>
  52. <li>
  53. <a href="form-elements.html">Basic Form Elements</a>
  54. </li>
  55. <li>
  56. <a href="form-components.html">Form Components</a>
  57. </li>
  58. <li>
  59. <a href="form-layouts.html">Form Layouts</a>
  60. </li>
  61. <li>
  62. <a href="form-validation.html">Form Validation</a>
  63. </li>
  64. </ul>
  65. </li>
  66. <li class="navigation__sub">
  67. <a href=""><i class="zwicon-cursor-square"></i> User Interface</a>
  68. <ul>
  69. <li>
  70. <a href="colors.html">Colors</a>
  71. </li>
  72. <li>
  73. <a href="css-animations.html">CSS Animations</a>
  74. </li>
  75. <li>
  76. <a href="buttons.html">Buttons</a>
  77. </li>
  78. <li>
  79. <a href="icons.html">Icons</a>
  80. </li>
  81. <li>
  82. <a href="listview.html">Listview</a>
  83. </li>
  84. <li>
  85. <a href="toolbars.html">Toolbars</a>
  86. </li>
  87. <li>
  88. <a href="cards.html">Cards</a>
  89. </li>
  90. <li>
  91. <a href="alerts.html">Alerts</a>
  92. </li>
  93. <li>
  94. <a href="badges.html">Badges</a>
  95. </li>
  96. <li>
  97. <a href="breadcrumbs.html">Bredcrumbs</a>
  98. </li>
  99. <li>
  100. <a href="jumbotron.html">Jumbotron</a>
  101. </li>
  102. <li>
  103. <a href="navs.html">Navs</a>
  104. </li>
  105. <li>
  106. <a href="pagination.html">Pagination</a>
  107. </li>
  108. <li>
  109. <a href="progress.html">Progress</a>
  110. </li>
  111. </ul>
  112. </li>
  113. <li class="navigation__sub">
  114. <a href=""><i class="zwicon-tray-stack"></i> Javascript Components</a>
  115. <ul class="navigation__sub">
  116. <li>
  117. <a href="carousel.html">Carousel</a>
  118. </li>
  119. <li>
  120. <a href="collapse.html">Collapse</a>
  121. </li>
  122. <li>
  123. <a href="dropdowns.html">Dropdowns</a>
  124. </li>
  125. <li>
  126. <a href="modals.html">Modals</a>
  127. </li>
  128. <li>
  129. <a href="popover.html">Popover</a>
  130. </li>
  131. <li>
  132. <a href="tabs.html">Tabs</a>
  133. </li>
  134. <li>
  135. <a href="tooltips.html">Tooltips</a>
  136. </li>
  137. <li>
  138. <a href="toast.html">Toasts</a>
  139. </li>
  140. <li>
  141. <a href="treeview.html">Tree View</a>
  142. </li>
  143. <li>
  144. <a href="custom-alerts.html">Custom Alerts</a>
  145. </li>
  146. </ul>
  147. </li>
  148. <li class="navigation__sub">
  149. <a href=""><i class="zwicon-line-chart"></i> Charts</a>
  150. <ul>
  151. <li>
  152. <a href="flot-charts.html">Flot</a>
  153. </li>
  154. <li>
  155. <a href="other-charts.html">Other Charts</a>
  156. </li>
  157. <li>
  158. <a href="maps.html">Maps</a>
  159. </li>
  160. </ul>
  161. </li>
  162. <li>
  163. <a href="calendar.html"><i class="zwicon-calendar-never"></i> Calendar</a>
  164. </li>
  165. <li>
  166. <a href="photo-gallery.html"><i class="zwicon-image"></i> Photo Gallery</a>
  167. </li>
  168. <li class="navigation__sub">
  169. <a href=""><i class="zwicon-repository"></i> Sample Pages</a>
  170. <ul>
  171. <li>
  172. <a href="profile-about.html">Profile</a>
  173. </li>
  174. <li>
  175. <a href="messages.html">Messages</a>
  176. </li>
  177. <li>
  178. <a href="contacts.html">Contacts</a>
  179. </li>
  180. <li>
  181. <a href="new-contact.html">New Contact</a>
  182. </li>
  183. <li>
  184. <a href="groups.html">Groups</a>
  185. </li>
  186. <li>
  187. <a href="pricing-tables.html">Pricing Tables</a>
  188. </li>
  189. <li>
  190. <a href="invoice.html">Invoice</a>
  191. </li>
  192. <li>
  193. <a href="todo-lists.html">Todo Lists</a>
  194. </li>
  195. <li>
  196. <a href="notes.html">Notes</a>
  197. </li>
  198. <li>
  199. <a href="search-results.html">Search Results</a>
  200. </li>
  201. <li>
  202. <a href="issue-tracker.html">Issue Tracker</a>
  203. </li>
  204. <li>
  205. <a href="faq.html">FAQ</a>
  206. </li>
  207. <li>
  208. <a href="team.html">Team</a>
  209. </li>
  210. <li>
  211. <a href="blog.html">Blog</a>
  212. </li>
  213. <li>
  214. <a href="blog-detail.html">Blog Detail</a>
  215. </li>
  216. <li>
  217. <a href="questions-answers.html">Questions & Answers</a>
  218. </li>
  219. <li>
  220. <a href="questions-answers-details.html">Questions & Answers Details</a>
  221. </li>
  222. <li>
  223. <a href="login.html">Login & SignUp</a>
  224. </li>
  225. <li>
  226. <a href="lockscreen.html">Lockscreen</a>
  227. </li>
  228. <li>
  229. <a href="404.html">404</a>
  230. </li>
  231. <li>
  232. <a href="empty.html">Empty Page</a>
  233. </li>
  234. </ul>
  235. </li>
  236. </ul>
  237. </div>
  238. </aside>