forked from uniqname/UIDev-substrate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
18 lines (17 loc) · 740 Bytes
/
gallery.html
File metadata and controls
18 lines (17 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html data-ng-app="gallery" data-ng-csp>
<head>
<title>Image Gallery</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<script src= "http://ajax.googleapis.com/ajax/libs/angularjs/1.2.26/angular.min.js"></script>
<script src="http://code.angularjs.org/1.2.9/angular-animate.min.js"></script>
</head>
<body>
<div data-ng-controller="GalleryController as gc" class="">
<image-gallery></image-gallery>
<!-- <image-gallery></image-gallery> I can now insert the image gallery anywhere on my site! -->
</div>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>