initial commit

This commit is contained in:
Josh Johnson 2016-02-19 23:35:42 -05:00
commit f92932b947
44 changed files with 851 additions and 0 deletions

View file

@ -0,0 +1,11 @@
<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>