From e87daf2a2db8667994c7910b69d3a7429ec4bd8d Mon Sep 17 00:00:00 2001 From: Ghyslain Leclerc Date: Thu, 29 Dec 2016 01:47:06 -0500 Subject: [PATCH] Added a https to a layout. --- layouts/partials/custom_image_handler.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/custom_image_handler.html b/layouts/partials/custom_image_handler.html index ec1ad7f..e953884 100644 --- a/layouts/partials/custom_image_handler.html +++ b/layouts/partials/custom_image_handler.html @@ -3,7 +3,7 @@ // @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) { + $.getJSON("https://api.flickr.com/services/feeds/photos_public.gne?id={{ .Site.Author.flickrid }}&format=json&jsoncallback=?", function(data) { iweblog.application.displayImages(data, 8); }); });