forked from jermartin77/plusgallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
google.html
28 lines (26 loc) · 823 Bytes
/
google.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
<!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%;
}
body {
margin: 0;
}
</style>
</head>
<body>
<div id="plusgallery" data-userid="jeremiahjmartin" data-type="google"></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>