Flickr Feed

We've used jFlickrfeed jQuery plugin for display flickr feed in this template.

This is very easy to setup. You need know your flickr ID. Get it from here.

After get your ID, you are ready to setup your flickr feed. You need to change on js/main.js file. You will see a code like below.

$('.flickr-feed').jflickrfeed({
    limit: 6,
    qstrings: {
        id: '42935208@N08'
    },
    itemTemplate: '<li><a href="{{image_b}}" data-lity><img alt="{{title}}" src="{{image}}" /></a></li>'
});

You can change limit 6 to 12 or 18. And change your ID here. Yes, you are done! ;)

Tip: Make sure <ul class="flickr-feed"></ul> is used where you want to display flickr feed. This is already added on very bottom of our template.