11 lines
404 B
HTML
11 lines
404 B
HTML
<script type="text/javascript">
|
|
|
|
// @summary: jquery implementation
|
|
$(function() {
|
|
// @summary: Use the author's flickr ID to load images from the public flickr feed
|
|
$.getJSON("https://api.flickr.com/services/feeds/photos_public.gne?id={{ .Site.Params.Author.flickrid }}&format=json&jsoncallback=?", function(data) {
|
|
iweblog.application.displayImages(data, 8);
|
|
});
|
|
});
|
|
|
|
</script>
|