hugo-internet-weblog/layouts/partials/custom_image_handler.html
2016-02-19 23:35:42 -05:00

11 lines
396 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("http://api.flickr.com/services/feeds/photos_public.gne?id={{ .Site.Author.FlickrID }}&format=json&jsoncallback=?", function(data) {
iweblog.application.displayImages(data, 8);
});
});
</script>