forked from pixel-industry/Social-Photo-Stream-jQuery-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
pixelindustry
committed
Jun 8, 2015
1 parent
a3bd111
commit 7470dba
Showing
4 changed files
with
255 additions
and
507 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,124 +2,125 @@ | |
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="author" content="pixel-industry"> | ||
<link rel="stylesheet" href="style.css" /> | ||
</head> | ||
<body> | ||
<article class="grid_3 social-feed deviant-feed"> | ||
<section class="section-title"> | ||
<h4>deviant art</h4> | ||
</section> | ||
</article> | ||
|
||
<article class="grid_3 social-feed instagram-feed"> | ||
<section class="section-title"> | ||
<h4>Instagram</h4> | ||
</section> | ||
</article> | ||
|
||
<article class="grid_3 social-feed picasa-feed"> | ||
<section class="section-title"> | ||
<h4>Picasa</h4> | ||
</section> | ||
</article> | ||
|
||
<article class="grid_3 social-feed pinterest-feed"> | ||
<section class="section-title"> | ||
<h4>pinterest</h4> | ||
</section> | ||
</article> | ||
|
||
<article class="grid_3 social-feed flickr-feed"> | ||
<section class="section-title"> | ||
<h4>flickr</h4> | ||
</section> | ||
</article> | ||
|
||
<article class="grid_3 social-feed dribbble-feed"> | ||
<section class="section-title"> | ||
<h4>dribbble</h4> | ||
</section> | ||
</article> | ||
|
||
<article class="grid_3 social-feed youtube-feed"> | ||
<section class="section-title"> | ||
<h4>youtube</h4> | ||
</section> | ||
</article> | ||
|
||
<article class="grid_3 social-feed newsfeed"> | ||
<section class="section-title"> | ||
<h4>newsfeed</h4> | ||
</section> | ||
</article> | ||
<script src="jquery-1.8.3.js"></script> <!-- jQuery library --> | ||
<script src="socialstream.jquery.js"></script> | ||
<script> | ||
|
||
<link rel="stylesheet" href="style.css" /> | ||
|
||
|
||
</head> | ||
|
||
<body> | ||
<article class="grid_3 social-feed deviant-feed"> | ||
<section class="section-title"> | ||
<h4>deviant art</h4> | ||
</section> | ||
</article> | ||
|
||
<article class="grid_3 social-feed instagram-feed"> | ||
<section class="section-title"> | ||
<h4>Instagram</h4> | ||
</section> | ||
</article> | ||
|
||
<article class="grid_3 social-feed picasa-feed"> | ||
<section class="section-title"> | ||
<h4>Picasa</h4> | ||
</section> | ||
</article> | ||
|
||
<article class="grid_3 social-feed pinterest-feed"> | ||
<section class="section-title"> | ||
<h4>pinterest</h4> | ||
</section> | ||
</article> | ||
|
||
<article class="grid_3 social-feed flickr-feed"> | ||
<section class="section-title"> | ||
<h4>flickr</h4> | ||
</section> | ||
</article> | ||
|
||
<article class="grid_3 social-feed dribbble-feed"> | ||
<section class="section-title"> | ||
<h4>dribbble</h4> | ||
</section> | ||
</article> | ||
|
||
<article class="grid_3 social-feed youtube-feed"> | ||
<section class="section-title"> | ||
<h4>youtube</h4> | ||
</section> | ||
</article> | ||
|
||
<article class="grid_3 social-feed newsfeed"> | ||
<section class="section-title"> | ||
<h4>newsfeed</h4> | ||
</section> | ||
</article> | ||
|
||
<script src="jquery-1.8.3.js"></script> <!-- jQuery library --> | ||
<script src="../socialstream.jquery.js"></script> | ||
|
||
|
||
<script> | ||
/* <![CDATA[ */ | ||
/* ================ PINTEREST FEED ================ */ | ||
$('.pinterest-feed').socialstream({ | ||
socialnetwork: 'pinterest', | ||
limit: 15, | ||
username: 'vmrkela' | ||
}) | ||
|
||
/* ================ DEVIANT ART FEED ================ */ | ||
$('.deviant-feed').socialstream({ | ||
socialnetwork: 'deviantart', | ||
limit: 15, | ||
username: 'pixel-industry' | ||
}) | ||
|
||
/* ================ FLICKR FEED ================ */ | ||
$('.flickr-feed').socialstream({ | ||
socialnetwork: 'flickr', | ||
limit: 15, | ||
username: 'Mrky1' | ||
}) | ||
|
||
/* ================ DRIBBBLE FEED ================ */ | ||
$('.dribbble-feed').socialstream({ | ||
socialnetwork: 'dribbble', | ||
limit: 15, | ||
username: 'envato' | ||
}) | ||
|
||
/* ================ YOUTUBE FEED ================ */ | ||
$('.youtube-feed').socialstream({ | ||
socialnetwork: 'youtube', | ||
limit: 15, | ||
username: 'Envato' | ||
username: 'Envato', | ||
apikey: '' // REQUIRED - enter your Youtube v3 API key | ||
}) | ||
|
||
/* ================ NEWSFEED ================ */ | ||
$('.newsfeed').socialstream({ | ||
socialnetwork: 'newsfeed', | ||
limit: 15, | ||
username: ' http://feeds.feedburner.com/webdesignerdepot?format=xml' | ||
}) | ||
|
||
/* ================ INSTAGRAM FEED ================ */ | ||
$('.instagram-feed').socialstream({ | ||
socialnetwork: 'flickr', | ||
limit: 15, | ||
username: 'Mrky1', | ||
overlay: true | ||
}) | ||
/* ================ PICASA FEED ================ */ | ||
$('.picasa-feed').socialstream({ | ||
socialnetwork: 'picasa', | ||
limit: 15, | ||
username: '[email protected]' | ||
}); | ||
|
||
/* ================ PICASA FEED ================ */ | ||
$('.picasa-feed').socialstream({ | ||
socialnetwork: 'picasa', | ||
limit: 15, | ||
username: '[email protected]' | ||
}); | ||
/* ]]> */ | ||
</script> | ||
</body> | ||
</html> | ||
</body> | ||
</html> |
Oops, something went wrong.