forked from pavelk2/social-feed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (61 loc) · 2.68 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
<html>
<head>
<link href="css/jquery.socialfeed.css" rel="stylesheet" type="text/css">
<script src="http://kucherbaev.com/plugins/jquery/jquery-1.7.2.min.js"></script>
<script src="js/jquery.socialfeed.utility.js"></script>
<script src="js/jquery.socialfeed.js"></script>
<style>
/*This style is needed only for the plugin demo page. Do not use it in your projects*/
.credits{text-align:center;padding:20px;margin-top:10px;font-size:12px;}
body{ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 20px;
color: #333333;
background-color: #ffffff;
text-align:center;
}
a{color: #0088cc;text-decoration: none;}
a:hover,a:focus {color: #005580;text-decoration: underline;}
.muted {color: #999999;}
.container {display:inline-block;width:600px;}
</style>
</head>
<body>
<div class="container">
<h3 class="muted">social - feed</h3>
<div class="social-feed-container">
</div>
<h6 class="credits muted"><a href="https://github.com/pavelk2/social-feed" target="_blank">Social-feed</a> jquery plugin, developed by <a target="_blank" href="http://kucherbaev.com">Pavel Kucherbaev</a></h6>
</div>
<script>
$(document).ready(function(){
$('.social-feed-container').socialfeed({
//FACEBOOK--------------------
fb_username:'pavel.kucherbaev',
fb_limit:2,
fb_token:'240696342763428|FgHgjfn7wWMNT15ONHP0tVdWm_k',
//VKONTAKTE--------------------
vk_userid:36603,
vk_limit:2,
vk_source:'all',
//TWITTER----------------------
/*tw_limit:2,
tw_username:'jack',*/
//GOOGLEPLUS-------------------
google_access_token: 'AIzaSyA_lDYGTnTiEjhzjvkxX1KZnouhbVQ0QUU',
google_userid: '114860576370498981824',
google_limit: 2,
google_media: true,
//INSTAGRAM---------------------
igm_userid:23686378,
igm_client_id:'2c6d2173ae9d41de905236e6301e5a43',
igm_limit:2,
//GENERAL SETTINGS--------------
length:130,
show_media:true
//cookies:true
});
});
</script>
</body>
</html>