Project

General

Profile

1
<header>
2
  <nav>
3
    <a [routerLink]="['']">Home</a>
4
    <a [routerLink]="['about']">About</a>
5
  </nav>
6
</header>
7
<main>
8
  <h1>Hello from {{title}}!</h1>
9

    
10
  <!-- Images (and assets) are parsed and loaded from within the public directory -->
11
  <img src="/img/angular.png">
12

    
13
  <router-outlet></router-outlet>
14
</main>
15
<footer>
16
  <a [href]="url">Webpack Angular 2 Starter</a>
17
</footer>
(2-2/7)