-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
131 lines (107 loc) · 4.27 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Cleveland Lane</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="Jason Merriman">
<!-- Le styles -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<link href="css/jquery.fancybox.css?v=2.1.3" rel="stylesheet">
<!--[if gte IE 9]>
<style type="text/css">
.gradient {
filter: none;
}
</style>
<![endif]-->
<!--[if IE 8]>
<link type="text/css" rel="stylesheet" media="all" href="css/ie.css" />
<![endif]-->
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Modernizr -->
<script src="scripts/modernizr.js"></script>
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="images/cleveland_lane.icns" />
</head>
<body>
<div class="container logo">
<img src="images/logo_cleveland_lane.png" />
<h1>Event Design, Planning and Coordination</h1>
</div>
<div class="container photos">
<div class="row">
<div class="span4">
<a href="images/photos/ostine_pic_large.jpg" class="grouped_elements" title="" rel="weddings">
<span class="overlay zoom"></span>
<img src="images/photos/ostine_pic.jpg" alt="">
</a>
</div>
<div class="span4">
<a href="images/photos/peony_jade_large.jpg" class="grouped_elements" title="" rel="weddings">
<span class="overlay zoom"></span>
<img src="images/photos/peony_jade.jpg" alt="">
</a>
</div>
<div class="span4">
<a href="images/photos/chuppah_large.jpg" class="grouped_elements" title="" rel="weddings">
<span class="overlay zoom"></span>
<img src="images/photos/chuppah.jpg" alt="">
</a>
</div>
</div>
<div class="row">
<div class="span4">
<a href="images/photos/jenny_bouquet_large.jpg" class="grouped_elements" title="" rel="weddings">
<span class="overlay zoom"></span>
<img src="images/photos/jenny_bouquet.jpg" alt="">
</a>
</div>
<div class="span4">
<a href="images/photos/chimacoff_pic_large.jpg" class="grouped_elements" title="" rel="weddings">
<span class="overlay zoom"></span>
<img src="images/photos/chimacoff_pic.jpg" alt="">
</a>
</div>
<div class="span4">
<a href="images/photos/ostine_table_closer_large.jpg" class="grouped_elements" title="" rel="weddings">
<span class="overlay zoom"></span>
<img src="images/photos/ostine_table_closer.jpg" alt="">
</a>
</div>
</div>
<div class="promo">
<a href="http://www.sayidowedding.com"><img src="images/sayIDoLogo.jpg" width="125"></a>
</div>
</div>
<div class="container footer">
<h2>PRINCETON, NEW JERSEY</h2>
<p>
<span class="top-text">
<span><em>e-mail:</em> <a href="mailto:[email protected]">[email protected]</a></span>
</span>
<span><em>direct:</em> 732.690.4311</span> <span><em>fax:</em> 609.924.5751</span>
</p>
</div>
<div class="promo-mobile">
<a href="http://www.sayidowedding.com"><img src="images/sayIDoLogo.jpg" width="80"></a>
</div>
<!-- js -->
<script src="scripts/jquery.js"></script>
<script src="scripts/jquery.fancybox.pack.js"></script>
<script src="scripts/bootstrap-dropdown.js"></script>
<script src="scripts/bootstrap-collapse.js"></script>
<script>
$(document).ready(function() {
$(".grouped_elements").fancybox();
});
</script>
</body>
</html>