-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 940 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>peep.js example</title>
<style>
body {
padding: 15px;
margin: 0;
}
.share {
margin-bottom: 15px;
}
</style>
</head>
<body>
<div class="share" data-url="http://brdrck.me/" data-title="Jeff Broderick"></div>
<div class="share" data-url="http://storify.com/" data-title="Storify" data-services='Twitter,Facebook,LinkedIn,GooglePlus,Delicious'></div>
<div class="share" data-url="http://www.vinch.be/blog/2012/02/02/letat-du-web-belge-acte-3/" data-title="L’état du Web belge – acte 3"></div>
<div class="share" data-url="https://pbs.twimg.com/media/A7EiDWcCYAAZT1D.jpg:large" data-title="Obama" data-services='Pinterest'></div>
<script src="public/peep.min.js"></script>
<script>
window.onload = function() {
new peep.Peep('.share', {
theme: 'kajmak'
});
}
</script>
</body>
</html>