forked from jerryc-nguyen/ng-photo-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (34 loc) · 1.21 KB
/
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
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<title>Angulars practices</title>
<link href="css/style.css" media="screen" rel="stylesheet" />
<script src="js/angular.min.js"></script>
<script src="js/ngPhotoGrid.js"></script>
<script src="js/app.js"></script>
</head>
<body ng-app='ngApp'>
<div class='wrapper' ng-controller="indexCtrl">
<div class="header">
<h1>
<a href="https://github.com/jerryc-nguyen/ng-photo-grid" target="_blank">ngPhotoGrid</a>
<small class='small'><i>facebook like photo grid in angularjs.</i></small>
</h1>
</div>
<div class='content'>
<div class="feed-item">
<div ng-photo-grid = ""
images = "images"
grid-options = "gridOptions"
ng-class = "{'loading': isBuildingGrid}"
class = "feed-photos">
</div>
</div>
<p class='small'><i>click on image or turn on firebug to see the callback.</i></p>
</div>
<div class='footer'>
<p>by Jerryc Nguyen, <a href="https://github.com/jerryc-nguyen/ng-photo-grid" target="_blank">source on github</a></p>
</div>
</div>
</body>
</html>