-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprint.html
56 lines (53 loc) · 2.15 KB
/
print.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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dean Noroozi Website</title>
<link rel="stylesheet" href="css/app.css" />
<link rel="stylesheet" href="css/lightcase.css" />
<script src="bower_components/modernizr/modernizr.js"></script>
</head>
<body>
<header>
<div class="row">
<div class="small-12 medium-6 columns">
<a href="#"><img class="logo" src="img/logo.png" alt="Dean Noroozi"></a>
<ul class="nav">
<li><a href="index.html">Work</a></li>
<li><a href="print.html">Print</a></li>
<li><a href="videos.html">Videos</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</header>
<div class="row">
<div id="grid" class="image-grid" data-columns data-clearing>
<div><a href="img/echo-1.jpg" title="Sheamus Interview" data-rel="lightcase:Collection"><img src="img/echo-1.jpg"></a></div>
<div><a href="img/vardy.jpg" title="Vardy Daily Mail Infographic" data-rel="lightcase:Collection"><img src="img/vardy.jpg"></a></div>
<div><a href="img/dailymail-1.jpg" title="Daily Mail Newspaper" data-rel="lightcase:Collection"><img src="img/dailymail-1.jpg"></a></div>
<div><a href="img/euro-2016.jpg" title="Euro 2016" data-rel="lightcase:Collection"><img src="img/euro-2016.jpg"></a></div>
<div><a href="img/digital-spy.jpg" title="Digital Spy" data-rel="lightcase:Collection"><img src="img/digital-spy.jpg"></a></div>
<div><a href="img/harry-kane.jpg" title="Harry Kane Infographic" data-rel="lightcase:Collection"><img src="img/harry-kane.jpg"></a></div>
</div>
</div>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/foundation/js/foundation.min.js"></script>
<script src="js/app.js"></script>
<script src="js/salvattore.min.js"></script>
<script src="js/lightcase.min.js"></script>
<script type="text/javascript">
jQuery(document).ready(function($) {
$('a[data-rel^=lightcase]').lightcase(
{
maxWidth:4000,
maxHeight:4000,
showTitle:true,
showSequenceInfo:false,
}
);
});
</script>
</body>
</html>