-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphoto angular.html
50 lines (50 loc) · 1.89 KB
/
photo angular.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Raleway:400,500,600,300,200' rel='stylesheet' type='text/css'>
<meta name="viewport" content="initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="photo angular/css/photostyle.css">
<link href='https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css' rel='stylesheet' type='text/css'>
<title>Dan Meyer Photography</title>
</head>
<body id="bHeight" ng-app="myApp">
<div class = "main" ng-controller="MainController">
<div id="landing">
<div class="landCont">
<h1>{{ landing.line1 }}</h1>
<h1>{{ landing.line2 }}</h1>
</div>
<div class="title">
<h2>{{ title }}</h2>
<h3 class="cap">Click button to the right to see more. All photorgraphy on this site is my own unless explicitly stated</h3>
</div>
<button id="slide" type="button"><i class="fa fa-camera-retro" aria-hidden="true"></i></button>
</div>
<div class="gallery">
<div class="grid">
<div ng-repeat="location in locations">
<div class="grid-box" data-place="seattle">
<div class="box-caption">
<p>{{ location.name }}</p>
</div>
<a href="#">
<img ng-src="{{ location.pic }}">
</a>
</div>
</div>
</div>
</div>
<div class = "slideShow">
<button id=back type="button"><i class="fa fa-chevron-circle-left" aria-hidden="true"></i>
</button>
<div class="grid" id="indGrid">
</div>
</div>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.5/angular.min.js"></script>
<script type="text/javascript" src="photo angular/app.js"></script>
<script type="text/javascript" src="photo angular/Controllers/mainController.js"></script>
</div>
</body>
</html>