2025-02-11 22:37:45 +01:00
|
|
|
<!--<script type="text/javascript">
|
2016-02-19 23:35:42 -05:00
|
|
|
|
|
|
|
// @summary: jquery implementation
|
|
|
|
$(function() {
|
|
|
|
// @summary: Use the author's flickr ID to load images from the public flickr feed
|
2024-11-09 03:16:58 +08:00
|
|
|
$.getJSON("https://api.flickr.com/services/feeds/photos_public.gne?id={{ .Site.Params.Author.flickrid }}&format=json&jsoncallback=?", function(data) {
|
2016-02-19 23:35:42 -05:00
|
|
|
iweblog.application.displayImages(data, 8);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2025-02-11 22:37:45 +01:00
|
|
|
</script>-->
|