-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (22 loc) · 771 Bytes
/
index.html
File metadata and controls
26 lines (22 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<link href="~/Areas/coloursApp/css/app.css" rel="stylesheet"/>
<link href="~/Areas/coloursApp/css/bootstrap.css" rel="stylesheet" />
<div ng-controller="mainCtrl as vm">
<table class="table table-responsive table-bordered">
<thead>
<tr>
<td><b>No</b></td>
<td><b>colours</b></td>
</tr>
</thead>
<tbody>
<tr ng-repeat="clr in vm.colours">
<td>{{$index+1}}</td>
<td>{{clr.name}}</td>
</tr>
</tbody>
</table>
</div>
<script src="/scripts/angular.js"></script>
<script src="/dest/coloursApp/app.module.js"></script>
<script src="/dest/coloursApp/interface/colours.js"></script>
<script src="/dest/coloursApp/controller/mainController.js"></script>