<div id="otembImages" class="row"></div>

<div id="blueimp-gallery" class="blueimp-gallery blueimp-gallery-controls">
    <div class="slides"></div>
    <h3 class="title"></h3>
    <!-- The placeholder for the description label: -->
    <p class="description"></p>
    <a class="prev"></a>
    <a class="next"></a>
    <a class="close">×</a>
    <a class="play-pause"></a>
    <ol class="indicator"></ol>
</div>
.blueimp-gallery > .description {
  position: absolute;
  top: 30px;
  left: 15px;
  color: #fff;
  display: none;
}

.blueimp-gallery-controls > .description {
  display: block;
}
// jquery sampled from http://www.richardshepherd.com/how-to-use-jquery-with-a-json-flickr-feed-to-display-photos/
$(document).ready(function(){
  $.getJSON("https://api.flickr.com/services/feeds/photos_public.gne?jsoncallback=?",
            {
    lang: "en-us",
    id: "43759933@N03",
    format: "json"
  }, displayImages);

  function displayImages(data) {
    //var limit = 4;
    var htmlString = "";

    $.each(data.items, function(i, item){
      //if(i>limit) return false;
      var sourceSquare = (item.media.m).replace("_m.jpg", "_s.jpg");
      //var sourceSquare = (item.media.m);
      var largeImage = (item.media.m).replace("_m.jpg", "_b.jpg");
      htmlString += '<a href="' + largeImage + '" ';
      htmlString += ' class="thumbnail col-md-1 col-sm-2 col-xs-3" '
      htmlString += ' data-gallery ';
      htmlString += ' title="' + item.title + '"';
      htmlString += '>';
      htmlString += '<img title="' + item.title + '" src="' + sourceSquare;
      htmlString += '" alt="';
      htmlString += item.title + '" />';
      htmlString += '</a>';
    });

    $('#otembImages').html(htmlString + "");

    document.getElementById('otembImages').onclick = function registerGallery(event) {
      event = event || window.event;
      var target = event.target || event.srcElement,
          link = target.src ? target.parentNode : target,
          options = { index: link, event: event },
          links = this.getElementsByTagName('a');
      blueimp.Gallery(links, options);
    };
  }
});

External CSS

  1. https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css
  2. //cdnjs.cloudflare.com/ajax/libs/blueimp-gallery/2.15.1/css/blueimp-gallery.min.css

External JavaScript

  1. //cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js
  2. //cdnjs.cloudflare.com/ajax/libs/blueimp-gallery/2.15.1/js/blueimp-gallery.min.js