-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (22 loc) · 787 Bytes
/
index.html
File metadata and controls
27 lines (22 loc) · 787 Bytes
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 html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script src="bower_components/angular/angular.min.js"></script>
<script src="bower_components/jquery/dist//jquery.min.js"></script>
<script src="bower_components/jquery-ui/jquery-ui.min.js"></script>
<script src="bower_components/jquery.shapeshift/core/jquery.shapeshift.min.js"></script>
<script src="app/app.js"></script>
<script src="app/directives/shapeshift.js"></script>
<script src="app/controllers/controller.js"></script>
<link href="app/css/shapeshift.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div ng-app="app">
<div ng-controller="controller">
<shapeshift images="images" columnWidth="150"/>
</div>
</div>
</body>
</html>