Last active
January 12, 2016 18:52
-
-
Save IEvangelist/3add69db05a014d2de2c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="page-header"> | |
<h1> | |
MVC, Angular2 | |
<br> | |
<small>Sample</small> | |
</h1> | |
</div> | |
<nav class="navbar navbar-inverse"> | |
<div class="container-fluid"> | |
<div class="navbar-header"> | |
<a class="navbar-brand" href="#"> | |
<span class="glyphicon glyphicon-sunglasses"></span> | |
</a> | |
</div> | |
<ul *ngIf="routes != null" class="nav navbar-nav"> | |
<li *ngFor="#rt of routes" [class.active]="getLinkStyle(rt)"> | |
<a [routerLink]="[rt.name]">{{rt.name}}</a> | |
</li> | |
</ul> | |
</div> | |
</nav> | |
<div class="content padding has-header"> | |
<router-outlet></router-outlet> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment