forked from jermartin77/plusgallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flickr-single.html
45 lines (39 loc) · 1.22 KB
/
flickr-single.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
<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Plus Gallery | Single Album Example</title>
<link rel="stylesheet" href="css/plusgallery.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
html,body {
height: 100%;
font-family:Arial, Helvetica, sans-serif;
font-size: 13px;
}
body {
margin: 0;
}
a:link {
text-decoration: none;
}
a:link, a:visited, a:hover {
color: #00C0FF;
}
#galleryinfo {
text-align: center;
padding: 20px;
}
</style>
</head>
<body>
<div id="plusgallery" data-api-key="c07f724ab7ed6a1b01b799fe753c6d13" data-userid="24662369@N07" data-type="flickr"></div>
<div id="galleryinfo">Photos loaded from <a href="http://www.flickr.com/photos/gsfc/sets/">NASA Goddard Photo and Video's Photosets</a></div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>window.jQuery || document.write("<script src='js/jquery-1.7.2.min.js'>\x3C/script>")</script>
<script src="js/plusgallery.js"></script>
<script type="text/javascript">
$('#plusgallery').plusGallery();
</script>
</body>
</html>