The 2014 takes place from August 30 through September 14 in Perpignan, France. The images featured here are selections from each photographer being exhibited during the festival- including Bruno Amsellem, Mary F. Calvert, Williams Daniels, Guillaume Herbaut, Chris Hondros, Yunghi Kim, Olivier Laban-Mattei, Sebastian Liste, Anja Niedringhaus, Klaus Nigge, Ian Parry, Anne Raerick, Jorge Silva, Sean Sutton, Pierre Terdjman, Gaël Turine, Alvaro Ybarra Zavala and Michael Zumstein. Also being featured are a set of images (22-28) from North Vietnamese photographers, showing a view of the Vietnam war previously unseen in the west.
//
{{#ImageElementCollection}}
<div id="images">
{{#ImageElement}}
<div class="imagewrap">
<div class="imagecontainer">
<a name="photo{{position}}"><img src="{{fullUrl}}" alt="Description of {} {{caption}}" /></a>
</div>
<div class="caption"><div class="linkage"><p><a href="#photo{{position}}">{{position}}</a></p></div><p>{{#if caption}} {{caption}} {{/if}}<a class="hashy" href="#photo{{position}}">#</a></p></div>
</div>
{{/ImageElement}}
</div>
{{/ImageElementCollection}}
////
//
(function($){
var noCache = Date(), // Prevent IE caching of JSON
positionCounter = 0,
url,
json = _JSONHelper; // CUSTOM CODE found in js/JSON_helper.js
// COUNTER FOR HANDLEBARS (PAGINATION)
Handlebars.registerHelper(‘position’, function() {
// More than one position per loop
if (url !== this.fullUrl) {
url = this.fullUrl;
return positionCounter++;
}
else {
return positionCounter;
}
});
// get data from json object
$.getJSON(json, { "noCache": noCache }, function(data) {
// build the carousel
template = Handlebars.compile($(‘#longformTemp’).html());
html = template(data);
$(‘.photo-gallery’).html(html);
});
})(jQuery);
////



