UNPKG

1.28 kBHTMLView Raw
1<breadcrumb></breadcrumb>
2
3<section class="content">
4 <div class="card readable-width">
5 <div class="card-body">
6 <h1>Hello Armor</h1>
7 <p class="lead">
8 Welcome to your new Armor + Angular/cli app.
9 </p>
10 <p>
11 This is just an example component to make sure the routing is all hooked up.
12 Delete this guy and start creating your own with the
13 <a href="https://github.com/angular/angular-cli/wiki/generate" target="_blank">Cli generate command</a>.
14 </p>
15
16 <h2 class="mt-5">Routing & Modules</h2>
17 <p>
18 if this is a simple app (with only one major section) then you can add items directly to the app-routing.module.
19 Otherwise if you will have multiple nav sections, then each section should be it's own module.
20 </p>
21
22 <h2 class="mt-5 mb-0">But Wait...</h2>
23 <p><i>..There's more.</i> </p>
24 <p>
25 This app is API ready. So you should have been redirected to the login app & back by now.
26 As proof, here are the accounts you belong to:
27 </p>
28
29 <ul class="list-group" style="max-height: 250px; overflow: auto;">
30 <li *ngFor="let acct of accounts" class="list-group-item">
31 {{acct.name}}
32 </li>
33 </ul>
34 </div>
35 </div>
36</section>