Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jnjosh/internet-weblog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhyslain Leclerc <ghleclerc@gmail.com>2016-12-29 09:47:06 +0300
committerGhyslain Leclerc <ghleclerc@gmail.com>2016-12-29 09:47:06 +0300
commite87daf2a2db8667994c7910b69d3a7429ec4bd8d (patch)
tree0cc0f464d7046a92c1e8996e6afa1660038ce4f9
parent2d82d19d1413c5990acdbef0679b83ddcc6c702f (diff)
Added a https to a layout.
-rw-r--r--layouts/partials/custom_image_handler.html2
1 files changed, 1 insertions, 1 deletions
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);
});
});