-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
28 lines (27 loc) · 1009 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!doctype HTML5>
<html ng-app="cmTable">
<head>
<title>cmTable</title>
<script type="text/javascript" src="./bower_components/angular/angular.min.js"></script>
<script type="text/javascript" src="./bower_components/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="./bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script type="text/javascript" src="./app.js"></script>
<link rel="stylesheet" href="./bower_components/bootstrap/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="./main.css"/>
</head>
<body ng-controller="mainController">
<div class="container">
<table class="table table-hover table-striped" cm-table cm-table-data="dogSpecies">
<thead>
<tr>
<th cm-table-param="name">Name</th>
<th cm-table-param="pattern">Pattern</th>
<th cm-table-param="size">Size</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</body>
</html>