left-menu.component.html 497 Bytes


<div id="leftNavTop"  [class]="styleClass">

  <nav id="leftNav">

    <div *ngFor="let group of menu" class="leftNavGroup">

      <span class="menuHeader">{{group.name}}</span>
      <a *ngFor="let item of group.items" class="leftNavItem" [routerLink]="item.path" routerLinkActive="active" [queryParams]="item.params" >{{item.name}}</a>

    </div>

  </nav>

  <a href="http://codecrew.fi" alt="Codecrew homepage" target="_blank"><img id="moya-logo" src="assets/moya-logo.svg" /></a>
</div>