-
Notifications
You must be signed in to change notification settings - Fork 37
/
index.html
executable file
·76 lines (51 loc) · 1.93 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>jQuery Responsive Thumbnail Gallery Plugin Demo</title>
<meta name="title" content="jQuery Thumb Gallery Plugin Demo">
<meta name="description" content="jQuery Thumb Gallery Plugin Demo">
<meta name="author" content="John Polacek">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta http-equiv="cleartype" content="on">
<link rel="shortcut icon" href="_/img/favicon.ico">
<link rel="stylesheet" href="_/css/normalize.css">
<link rel="stylesheet" href="_/css/main.css">
<script src="_/js/modernizr-2.0.6.min.js"></script>
</head>
<body>
<div id="wrapper">
<header>
<h1>jQuery Responsive Thumbnail Gallery</h1>
</header>
<article>
<div id="gallery">
<p>Put your alt no-js content here.</p>
</div>
<p class="credit">
Photos by <a href="http://photos.theshotwellcollection.com">Andrew Schmidt</a> via
<a href="http://www.publicdomainpictures.net/browse-author.php?a=1081">publicdomainpictures.net</a>
</p>
</article>
<footer>
<p>jQuery Responsive Thumbnail Gallery Plugin created by John Polacek</p>
<p>
<a href="https://johnpolacek.github.com">johnpolacek.github.com</a>
<a href="http://johnpolacek.com">johnpolacek.com</a>
<a href="http://twitter.com/johnpolacek">@johnpolacek</a>
</p>
</footer>
</div>
<!-- JavaScript -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js"></script>
<script>window.jQuery || document.write("<script src='_/js/jquery.min.js'>\x3C/script>")</script>
<script src="_/js/responsivethumbnailgallery.js"></script>
<script>
$(document).ready(function() {
var gallery = new $.ThumbnailGallery($('#gallery'));
});
</script>
</body>
</html>